From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Did you try to connect to 127.0.0.1 and your 192.x.x.x IP address as well? This sometimes solves it but is just a workaround. If you use 192.x, make sure the mysql user has access from all hosts (not s= ecure but OK for testing). --Kindest Regards/ Freundliche Gr=FC=DFe-- STIBS (aka Michael Stibane) "Man is free at the moment he wishes to be." --Voltaire ... seems this guy already knew about Linux :o) ... ________________________________________________________ Training, Administration, Consulting, Development http://www.stibs.cc, stibs at ...6... -- Mandrakesoft Linux Campus Trainer http://mandrakesoft.com/training -- Escapade Server Sided Scripting Language Dev Team Pensacola, Dallas, Dresden, London http://escapade.org, stibs at ...135... -- Yoper OS German Maintainer http://yoper.com, stibs at ...136... ________________________________________________________ --bound1052747689-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: linking errors. Redhat 9.0 does work *BUT* you must upgrade your Qt library from rawhide http://distro.ibiblio.org/pub/Linux/distributions/redhat/rawhide/ before compiling. Updating from rawhide can be a pain. The way I did it was to install the apt-get port from freshrpms.net. I then updated my /etc/apt/sources.list file. I commented out the updates from ayo.freshrpms.net: #rpm http://ayo.freshrpms.net redhat/9/i386 os updates freshrpms #rpm-src http://ayo.freshrpms.net redhat/9/i386 os updates freshrpms and added an approriate rawhide apt repository: rpm ftp://ftp.uninett.no/pub/linux/apt redhat/rawhide/en/i386/redhat os rpm-src ftp://ftp.uninett.no/pub/linux/apt redhat/rawhide/en/i386/redhat os That is not three lines, but two. The last line is long and wrapped. Then issue the command apt-get install qt On Wed, 2003-07-09 at 12:21, Carlos Wagner wrote: > Dear Beno=EEt: >=20 > Gambas is a great idea. I am trying to install and I get this error messa= ge > : >=20 > c++ -DHAVE_CONFIG_H -I. -I. -I../../.. -I/usr/lib/qt3/include/ > -I../../../src/share -pipe -Wall -fno-exceptions -g -O0 -c main.cpp -f= PIC > -DPIC -o main.lo > main.cpp:44:24: qeventloop.h: No such file or directory >=20 > I am using Linux RedHat 8 and is up-to-date. Do you know why? >=20 > Thank you, >=20 > Carlos Eduardo Wagner > carlos_wagner at ...188... >=20 >=20 > ------------------------------------------------------- > This SF.Net email sponsored by: Parasoft > Error proof Web apps, automate testing & more. > Download & eval WebKing and get a free book. > www.parasoft.com/bulletproofapps > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user --=20 Philip A. Chapman Application Development: Java, Visual Basic (MCP), PostgreSQL, MySQL, MSSQL Linux, Windows 9x, Windows NT, Windows 2000, Windows XP --=-omrgZ2B7nwKBWY14A2AW Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQA/DFPqAdpynRSGw3URAhjRAJ0SqeLLyqaA3Im7nQUzizhYLXqpIQCfTb7C Fx/zLJyL7fxTyb58JVg3Dy4= =Yx7W -----END PGP SIGNATURE----- --=-omrgZ2B7nwKBWY14A2AW-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Try to run and ? No signal11 ! Conclusion? May be the disk-cache was not flushed after save. For shure Konqueror is to slow in detect and update changed directories by other programs. Now going on with the program. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: PUBLIC SUB mnuGoto_Click() DIM iLine as Integer iLent = $cLine[LAST.Tag] +1 edtEditor.Column = 0 edtEditor.Line = iLine - 10 edtEditor.Line = iLine + 10 edtEditor.Line = iLine END Does not work when the visible lines are less then 10 and the code is more for example 100 lines. The trick here is to get the line centered in the visible area. The value of 10 should be half of the visible lines. If both values where known it was possible to make a idiot proof center routine. I found it handy in handling the text position in the text area. ------ Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: The code looks as follows: ' col1 AS NEW collection 'dummy property bag for the control col2 AS NEW collection 'idem for second control PUBLIC SUB _new() ' this part must be done for every control you want ' to have the extra properties. col1.Add("control1","name") col1.Add("Version1","version") col1.Add("1","TabOrder") col1.Add("","OldValue") ' and now the trick TextBox1.tag=col1 'store it in the control ' here for the second control col2.Add("control2","name") col2.Add("Version2","version") col2.Add("2","TabOrder") col2.Add("","OldValue") ' and now the trick TextBox2.tag=col2 'store it in the control END PRIVATE SUB DoSomethingWithIt() 'use the trick 'clear text DIM property AS Variant property = TextBox1.Tag TextBox1.Text=Str(property ["name"]) ' or the direct way TextBox2.Text=Str(TextBox2.Tag["version"]) END This way is also a nice method to use the .Tag for other workarounds. Now you can use named items in the collection for all kind of things. It's only a bit stupid to put it in the tag if it can be a global. But with use of FOR EACH ctrl in ME.Controls the .Tag contains the right collection of additional information for that control. i.e. the OldValue if you press ESC (must set it with the gotfocus() for the control). If Group is used then with the LAST.Tag this can also help. FOR EACH ctrl in ME.Controls if ctrl.tag["name"]="Image" THEN ctrl.Picture = Picture("ledon.xmp") if ctrl.tag["name"]="btnClose" THEN ctrl.Enabled = True ctrl.move(ctrl.tag["left"],ctrl.tag["top"]) NEXT And for the missing .Index you have as object LAST when it belongs to a control Group. In the event procedure you get in the LAST.Tag then all the user properties for this control in the .Tag presented. For VB it is IF ctrl.name = "myname" THEN .... Gambas it is IF ctrl.tag["name"] = "myname" THEN .... Why this dificult way you ask? I'll try to explain it as follows: If you only use it for i.e. the .Name of the control it is easyer to cut and past it to the .Tag and your ready. But the Gambas controls are in basic QT widgets and they do not have all and the same properties as the M$ VB controls. Also while here the Gamabs interpreter is between your program in basic and the QT controls it has to transform it in both directions and that is not always posible or is difficult to implement for a easy working model. For other problems the .Tag can deliver an solution as workaround too. And it is that moment when you must use it for more then one thing. This way gives it than an nice workaround and in the code you can use simply the name for what you want to get from it. Using a Collection, Object's or Array's should also posible, is used here to be close to have the named property construction. Is this something to add to the Wiki "DifferencesFromVB " Rob? ---------- Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: --=20 Benoit Minisini mailto:gambas at ...1... From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: -- Benoit Minisini mailto:gambas at ...1... ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Process.Send has been removed. 'Write' event Process has been replaced by 'Read' event Process, and do not take any argument anymore. Use READ, LINE INPUT or INPUT instead. The 'Error' event did not change. But in movieplayer example, the Process.send(" ") is still being used and works fine. The write event has been replaced by Read event withour argument. Could anyone tell me how can we get the information? Before, we use Process_Write(sData as string), so that we can use sData to do whatever we want. Without sData, how can we get data from running process? I try READ and Line Input and did not get anything in return. Thanks in advance for help. Regards, Edward --------------------------------- Post your free ad now! Yahoo! Canada Personals --0-1091504147-1068204604=:741 Content-Type: text/html; charset=us-ascii

From changeLog I found that:

  • Process.Send has been removed.
  • 'Write' event Process has been replaced by 'Read' event Process, and do not take any argument anymore. Use READ, LINE INPUT or INPUT instead. The 'Error' event did not change.
  • But in movieplayer example, the Process.send(" ") is still being used and works fine.

    The write event has been replaced by Read event withour argument. Could anyone tell me how can we get the information? Before, we use Process_Write(sData as string), so that we can use sData to do whatever we want. Without sData, how can we get data from running process? I try READ and Line Input and did not get anything in return.

    Thanks in advance for help.

     

    Regards,

    Edward



    Post your free ad now! Yahoo! Canada Personals
    --0-1091504147-1068204604=:741-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Can I develop commercial applications with PerlQt or PyQt or other Qt=20 wrappers? Yes, if you have purchased a commercial license. The licensing conditions a= re=20 the same whether you use the Qt API directly in C++, or you use it through= =20 some API wrapper in another programming language. All developers that write= =20 code containing calls to the Qt API (directly or through a wrapper) need Qt= =20 licenses. Regards, --=20 Benoit Minisini mailto:gambas at ...1... From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Sometimes the French language in the music is and seems better then in the= =20 English language > > sorry again, i'll try to speak scheakspear language futurmore > > > regards > olivier Don't be hurt. The intention was to help and not complain! From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Je ne parle pas la langue fran=E7aise is the only thing I know and can speak. Ron. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Sometimes the French language in the music is and seems better then in the English language > > sorry again, i'll try to speak scheakspear language futurmore > > > regards > olivier Don't be hurt. The intention was to help and not complain! From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Je ne parle pas la langue fran?aise is the only thing I know and can speak. Ron. ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: I must only find the way to set LANG=3Den_NL :) > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > The second is: > > -------------------- > > The 'language' and 'COUNTRY' !! Yes I write AND !!! 8<--------- > > This is a problem with SuSE. I think they are wrong. Country and language > must be distinct... That's also my opinion. > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > The third way > > ---------------- > > How any user will do it on his/here own way 8<---------- > > For the rest: > > Where is 'nl' comming from ??? > > May be a System.Country can be nice to have. For a Dialer program i.e. > > > > Ron > > Actually, System.Language returns the COUNTRY and the language, specific = to > this country, or just the language, and then assume that the COUNTRY is t= he > same. > > I think I won't change anything until something standard arise between > distributions - But I think the way of Mandrake (the same as Fedora) is t= he > right way, and that SuSE may be the only distribution that proceeds this > way. Something to check... Alright for me > > What do Gentoo, Slackware, FreeBSD, ... user think about that ? How are t= he > country and the language specified on their system ? Thanks Ron. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: I just have fixed this bug! Replace: =A0 IF bProc THEN $sName =3D aLine[iPos + 1] =A0'<----------- 598 by the following: =A0 IF bProc THEN =A0=20 =A0 =A0 INC iPos =A0 =A0 IF iPos >=3D aLine.Count THEN RETURN =A0 =A0 $sName =3D aLine[iPos] =A0 =A0=20 =A0 ENDIF This correct it Next version should have it regarding Benoit Grts Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: ned=20 a lot.Where I thought before only a real USER can produce that, now I can=20 also. This occupation I took, after reading an article some times ago, about Linu= x=20 and the problem to use Linux as 'Desktop for NORMAL users'. The conclustion was something like that:=20 'Linux developers has only other Linux developers as clients. And the=20 information interchange via internet was from developer to developer. They speak one language, they think in the same way.' But nomal users do not so, he has not contact via internet to the developer= ,=20 and he don't think like a developer, and if he explaine his problem he says= =20 things a developer don't understand (last happend for me last frieday). And I think also gambas user are not developeres even if they develop, and= =20 looking further, if gambas is going to become the 'VB from Linux', gambas=20 users will become more and more 'normal users'. So pardon me for reported 'bugs'. But be shure if I find I will carry them = to=20 you. My next thing is to have a look to the gambas help, where I know that there= is=20 a lot of work. I will do it by writing projects without the IDE or by not=20 using the possibilitys proposed. You will see ! Amicalement Charlie =20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: VScrollBar, HScrollBar: Gambas' ScrollBar replaces both of these. It autom= atically figures out whether you want a vertical or horizontal scrollbar ba= sed on the control's dimensions: make it wide, and you get a horizontal scr= ollbar; make it tall, and get a vertical one. Regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolb= ar... Web/Wap : www.netcourrier.com T=E9l=E9phone/Fax : 08 92 69 00 21 (0,34 =80 TTC/min) Minitel: 3615 NETCOURRIER (0,16 =80 TTC/min) From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: installation-authoring solution that does it all. Learn more and evaluate today! http://www.installshield.com/Dev2Dev/0504 _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________________________ Zeigen Sie Emotionen mit der WEB.DE Bild-SMS! Das Bild ist gratis, Sie bezahlen nur den Versand. http://freemail.web.de/?mc=3D021196 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: installation-authoring solution that does it all. Learn more and evaluate today! http://www.installshield.com/Dev2Dev/0504 _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________________________ Zeigen Sie Emotionen mit der WEB.DE Bild-SMS! Das Bild ist gratis, Sie bezahlen nur den Versand. http://freemail.web.de/?mc=021196 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: from having a small quantity of simple examples, but, I must admit, you're so nice on this ml :-) I'm collecting examples, I hope in future to have for others like me a great number of examples to be put on a site... From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: the CMENU struct. The second one is trying to say an entire pointer function =3D 0. TTFN Paul --=20 "Look. If you had one shot, one opportunity, to seize everything you ever wanted. One moment to capture or would you just let it slip?" - Marshall Mathers III (Lose Yourself) --=-HdpMcQ5aEnixrHiPdj6l Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (GNU/Linux) iD8DBQBBERVtIX4V53EitUoRArLZAJ0cIwymjaSONgfYGHpXuoE3nCNsPACeNGU1 +YUmn6Aq1NwC9Q9iG0IQTw0= =xwU7 -----END PGP SIGNATURE----- --=-HdpMcQ5aEnixrHiPdj6l-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : gambas-user at lists.sourceforge.net Cc : Date : Sun, 5 Sep 2004 14:15:22 +0200 Subject : Re: [Gambas-user] Accessing various tables of mysql database > On Sunday 05 September 2004 12:09, francesco.difusco at ...69... wrote: > > I open various tables of a mysql database in different forms. Precisely= , I > > open a table, where, in a tableview I select a record. Then I use a fie= ld > > of this record to query another table, and display this query opening=0D > > another form. I open and display this query in the open event of the new > > form. It works correctly, but when I return to the calling form, that > > animal (gambero, in Italian) starts to cry, or looks like desperate. The > > application is blocked, and I get a message about a field. I don't know= if > > I have clearly explained the problem. > > Absolutely not :-) > > Send a project, a database, everything that allows people to reproduce the > behaviour. > Well, I send the project, but how do I send the database which the project connects to ? --_=__=_XaM3_.1094387949.2A.96712.42.17146.52.42.007.31752 Content-Type: application/gzip; name="=?iso-8859-1?Q?source.tar.gz?=" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="=?iso-8859-1?Q?source.tar.gz?=" H4sICFAJO0EAA1lTNmN3Yi50YXIA7Vv/c9q4Es/P/is03EwLb1zX3yF9x81LKCTMJLQDtJ03 aSdjQCG6Gov6S2h7c//7W0k22NgucEnI3SvbJghJ3l3trj6SVk5AI3+MXx49JqmqqdbrFnyq at3OfsZ0pKmaZtuqaanGkaoZqq0fIetRtYopCkLHR+joxne8MQ7GtKTfpvZ/KAXC/2cuHTmu MqOTyMUPLUPVVNW27TL/m5ptCv9bRux/y6zXj5D60IoU0U/u/+fozJmNnAAJ16Mb4mKpsPLt u9OLbgtNRuhkgHrtD6hFPQ+PQ0K9pM0PWFsfB5Ebruq0fOXt6lnWmOc0dmZzkggahD7xplef ksYvEfa/XfvkjgQhZp38DHPRHGJwbKb5eSJc6NIh2J1whZVMBZIK+q2GwL9KzzcSdAmiEQop GovRseLsW/DFRQH277DPu2zkEusyeHcKlo85VW9pEDKNhGFk5E699Ne5EwTp75OR58zwqqYm obQHmmvOREDw60N3eJ7uxuuV8NscNyt8HBVRcw7KNJlG4qtLp8RrgkbiK9NlQf1JkxVEFVOm KXSSpNbJsHUO9Zc4CJwpVrDvU7/aZr+VEH8Na1K795rrIvHSFjZbtz9Er4vCW4xCZ+TiO4IX aPESgmIMagVbeSHvC8bzmrGqhqM7Ztklbxl98b+lbf26e4l4KHdc6jAjsRnRBKco+CseV6F3 LbE2tHATAU/Fp4tAGdPIC5sqr+x2kPj+628qGp63e7xWdB5TN5p5SX/lhkey+JbqlWKZamNW 7XYkUeCGhoIExGOOBHPXWc6m3GjF8FhQL0fMa7w+Ny+r7XohnmJfgk7NyqB90W4NUXcy5Awd GQ1JSF0qQ1V7AkUfQ3Ew6MkDGoY05I3oxqczFKtQkTLzu5mKUKXNDApyalIsv5npGw+amzrT IEkFJi+290ZrrzGKFclYehXRHOYUZzKpVpYmqdTS1cI82bqlqdaqwWzZmpQNKzWY1NyxabfG GFoQxMIyznog/wVP97kM8HTXu8MeLLYk6+1eNMM+VAECwLcTz4PykM7g93tmZ6h76wCkYBEF CeovbrGPV3HUrDxLVJYyy8NW8RH3zcdH3CA9Z17tM6+2Cr28n3ARnh272PGz4RCbeC0clube KnqEG7J1zCXZGuYeCKVMhIKvsp2E37J1wocVDudPvec50Iri/X/r/KR31r54c/YYMjbs/3UN NvvJ+U83VOhv6of9/37oX2gQeWiA50i1kA6HMbQcKPp1WfzPYrFQpoT68KN4OPwNqYr6QtOl FwgYOKFgYO7KoAHP/3IynRKAPoqIi26oP0PDeOc+xz5yHQTQFjku+f7d+U4AxDGaYBfOJMn+ XnxLgJrpc8kOFdEUGequ+tSZPl2PfCds6QPZoe9Mou9cKvHg/9QFRASRBM2wF91Tms2kwfMT ckPGsD114vHPYW0dk7nj3nc4FhfQ9eC8QUBfMLEX0TuKOiDlFay3XoRaMFDYsTt8jEtvMnF6 Y+dwiMWB+SgMgk4x7D4k6e8VINI+4+NewrYIj3vx3zk6pEcIjqeGv5+ekvU/7WmFxdkDytiw /mu2pYv1X7dt3aofsRrTPKz/+6BfklQfm/aoQwAqNUWVpD+yk583szQNvcNVQ1VlrW7KlqHL htlg6YtTZ/x56sMRZoKa6Nl5W203Oo1n0DDEX0OoqlYqvBucbQC0m+gD8SZ0oXTIV8wOO3+g t2QcRj4+pV+1VJmfg7hMVVZlw1Zl09JrvDbuBLzi0lWFzGbslEGuXTLyycsRGbmEhnjsKL/P p5VP8NifXNZpBNjjafHnSoZxbMuaLmvwY8RSSseVGpk4feFK/EQyxI7jBnhNpl4o09pd5gUb 4TYSjUKJx7tLPPFDAifZrYSaxaY1dpf6nkww3UakVSyyvrvIyyggY2cbmXahTP0vhNCA3oQL x/9BDP35SEtljP+dS4d4D437CW3Ef8Pi+G9qqmWbOjv/1U3jgP/7oHL85yGRwX1NP4bIrgPu H8umrhXgfofTLrg/Cr0WM6ybn0sAizqbw7Da6I1adsKIZ+LpEjNooqEfrc/RApS32NwsY5ta 8zj3DegNvGyzmNfJbAZrUQBHhGJuBcgM3MoGfOl4UYi9dVabl80Xpmyopmwa9rbrJp1jD40o /azMvfyyWYDtbP3SG8V6t4M59cMSExSANuMFy3whr+7sB7wKwJjxOi7zNPFhNSvhVS8ORr3E 0299OGqSkOb4NIr5lI3vjLFZ6fNYkJ+hGP+HyQ2J6wTBQ8vYhP9mkv+zDKtuaez+34Jl4ID/ e6DlVT/3vLjpB0pddV57eFGtSeLyKF1/42Nc1MCWjOs3ACJVHt/5ayNxwzLlr5wgSVnda1dc OnZcdpdckSs+pexjjudzMLvjw2ytyKiy2tXDNBn2/4uU9A0PEyt1O6jd77/p82sY9Lbf7Q0R B48gICO2wnF5YYj9gLC0ygRQH0yAX1XQv9Hq6lkC1dauP4fsguw9wQstdS+9Pv5Vp+vXwLna p4vU7ZiMWvw+KFUFNkQpk4hb8uzNJQOPIWWsBGYsb+o0hWmvxBgCBq5mn7xSWuwS5koI/fSp lr7oTW56i5UHYS2XjD+vDUBcBC5v3lJ+TY+hWH+f6b+6tCtSl98ZXalMU+aEEaxs3BvN5WPl lo+X/GuhNjNrkvdTglu6WI5XysfrCcTPHXMxPPUcxaP4of85s6eevvemGP/ZXo/Z4VGOABvx 3zSX+Z+6Eb//dcD/vVD5/j8JiewR4NiCPZUqW3VbNux6wRGgcdo4fa09dOpHt5i8xtapH9i9 Bn74bS3xwzS6cEbY1VbFlRzdZntYUxw6TFXI6lCPDYJ9XFV6ZDaKAjRwvABdwFFIPqXuhPNn HX1ceBJKGeKjN2BgNHPQhKBpvNtDp8mKdos/euzf4I640XzuhBSWJtd1gIEzvgWERW88dMFe hUA9Z05dIrrfhuH81cuXLO0exh2p50I3hYTxCenEJVOPJflBDV5WWvAF+0vLxFbJWURlCTFD bciJ7X9kD31Xe5xhn3pkRrfVsuxIZ8Lpg3nveJV1yejZSCtWGq/pU4sHx7Z9bsOfjNb2/4+S AdqE/4Ztxft/3bBUdv9vGbZ2wP99UDn+J7esGfg3GCBocsO0ZLNxXNsB5Vdbp1UxjfFmA7jC h6puSJuuoJyvGHEhdcQGMGC8ZF1dO18nz+TO6QWIYtgxE3ONSfxEikfMVs+rYsomrFssJ7x+ 1E+eybMx8mw0wF/OSC9lZOQZmXlGesyo0ShlZOYZWQU2VlXByCxlZOUZ2QWMYEwbGNl5RvUC UzfE0Orlxq7/FIC+I8X430/egHyK/I9qGqv8j2qL/M8h/78XKsr/PFTyp/iF4XzeIH5xt5kk CxKc5oVsViH34vIyDyLHXNYSM/fLyxRkNJKEwu4ZmfjJfEamNJ+xnpnYr/kQ+j/JcRyonNbz P4+xAGzAf9Uy1WX+x67z/I9tHPB/L1SY/995AShdAgBEXJ5aEDnci5NlGT1DFfTRQ+9ZFp6l QSpQczKfu2Ts8FT+nWgADjMsno45DZOnUSqbclaQTUHVVi2dO0mnTtgfrxXj7euRm8of38zY ixGp7PEP0s3pzv8U8My8//Eou7/N8z85/5u2Zhqmxea/ph3O/3uhh5n/g+HJEBri9s67XmvY fdND/QgwgO1UTil1seOxCcX2MLc82cD+JJLlFqBSVDT5X/vyUIS6fnv4rt8TTcoA5tQlnThu CnLWYKfg8meceat1NYmf2uh/I1o7/z1F/k/VDWP9/t9UD/N/L1Se/4tDIpv/U49l3WjIx1Zd tkRq7GHyfyZ7CfYYfkzxPvEhS7MnKnz//4H3AVvPf91iL4Cy9//tw/3vfuhh1v/cMmynl+HN O2folGQvDqv0gQ50oAMd6ECPTv8DuSACzwBQAAA= --_=__=_XaM3_.1094387949.2A.96712.42.17146.52.42.007.31752-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Enjoy your day. We all appreciate your effort. Gambas is making a differenc= e! Bob From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: KDE takes somewhere part of this info and manages the fonts on=20 there way. My distro, suse8.2 is installing the shit with a font unknown for KDE, they like it but is unreadable on a 18 inch LCD/TTF. To big with size 13. For sure not the gentle nice menu bars=20 and menu's like windows. Sorry for KDE/QT/SuSE, but I dislike it. In the script that is starting X you can add a option for the X server to use 96dpi instead 75dpi as usual in linux. I have done something once and it is still working, nothing in mind=20 to play with it, I don't want crazy again with this font sh*t. For me in the IDE the first form with the choice for project the font=20 is horrible Size is OK but it looks really as dots. the menu bar in the IDE the same. Using the in preferences/others/use small font option makes the=20 tree having a good font, otherwise it is ugly too. The preference tabs having the same problem. The window title is OK but that one is from KDE without intervention of gambas. I think it is monospace every place and as black text it looks bad. Adobe courier, 9points is better for me. I hope it will be a option in the preferences in near future, because for every one this is different with monitor (TTF/CRT) and resolution. Sorry if it all sounds negative, but every time it is the font giving my problems, size and type. Never had it on Windows. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : gambas-user at lists.sourceforge.net Cc : Date : Thu, 9 Sep 2004 12:10:22 +0200 Subject : Re: [Gambas-user] Writing data in a gridview control > On Thursday 09 September 2004 11:58, francesco.difusco at ...69... wrote: > > > Rather simple, use the "current" keyword. If you named your gridview > > > "gv", the thing might read: > > > > > > gv.Row =3D 2 > > > gv.Column =3D 2 > > > gv.Current.Text =3D "hello" > > > > > > Does this work? > > > > Yes, it works now. But why, if I want to write in six columns, and I us= e=0D > > this for loop > > > > WITH gridview1 > > .row=3D0 > > FOR i=3D1 TO 6 > > .column=3Di > > .Current.Text =3D Format$(estra[i-1],"##") > > NEXT > > END WITH > > > > it writes only five columns, > > Maybe because the first column is zero. If I start from zero, it always displays five values. I have understood tha= t it writes in the same cell the last values. Starting from zero, is the same. If I change the loop like this FOR i=3D1 TO 6 .column=3Di .Current.Text =3D i NEXT the numbers 1 2 3 4 6 are diaplayed in the first five columns, and the numb= er=0D five is missing Thanks Francesco From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : gambas-user at lists.sourceforge.net Cc : Date : Thu, 09 Sep 2004 12:11:58 +0200 Subject : Re: [Gambas-user] Writing data in a gridview control > Hi Francesco > > > FOR i=3D1 TO 6 > > Try FOR i=3D0 TO 5 > > Does it help? The gridview begins with 0... > > Rolf If I use the following loop, It only displays the number 1 2 3 4 5 and zero= is missing FOR i=3D0 TO 5 .column=3Di .Current.Text =3D i NEXT If I use the following loop, It only displays the number 1 2 3 4 6 and 5 is= missing FOR i=3D1 TO 6 .column=3Di .Current.Text =3D i NEXT Francesco > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=3D5047&alloc_id=3D10808&op=3Dclick > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From budi at ...415... Thu Oct 26 19:20:09 2017 From: budi at ...415... (BUDI ARIEF GUSANDI) Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: =20 bodypart:plain text bodypart:HTML page Is 'The Bat' also on Linux available? I have seen it once, look to me a good mailer. No offense, just a reminder and keep smiling :) Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: ery slow. I missed as I see now the XmlReaderNodeType.EndElement detection. :( Stupid from me, I assumme the .Element as standalone object with attributes= =20 and new elements or text nodes inside. I did try to use a sub for the node to show the attributes and when there w= here Elements I called start of the show again. As far I now this worked in the VB version I made over 2 year back at my wo= rk. I can't see it any more, the company has gone 'Blowing in the wind' :( Thanks to your code it worked with the 38 channels now in no time. However I found a few problems to. For your code: CASE XmlReaderNodeType.EndElement IF bValueOk THEN ' PRINT Right(RTrim(sValue),2) PRINT sElement & "=3D" & RTrim(sValue) ' gives the extra '= =3D' tokens Using the kde file ark_pert.rc this results to: kpartgui : name -> ark_kparts version -> 8 Action : =3Dname -> select_all <------------ ?? =3D ?? icon -> ark_selectall Menu : name -> file text=3D&File Action : =3Dname -> file_save_as Menu : name -> edit Note to see also.=20 is _not_ as element shown but the content is element is _not_ shown, same reason as above. And there are equals tokens that should not be there, they are by multiple attributes in the tag. from: &File &Edit I miss simple the correct documentation how Daniels version works. I have been on http://xmlsoft.org for information but I can't get it. After 3 hours playing with it I give up to use XML :( I have to rebuild the winbox running up to manage the xml files on my linux= box.=20 The domxml (used by VB) is simple the better one, for me. Will be next year, I must start to prepare my trip. =20 Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Just read Daniel is also able so I hope when I'm back at home next year it works for me to. The layout look on Konqueror 3.1.4 here correct. Good job done to get it fixed. _____________________________________________________________________ Tiscali ADSL vanaf =80 14,95 per maand! GRATIS modem en GEEN aansluitkosten. Nieuw: Zonder Datalimiet! Ga nu naar http://adsl.tiscali.nl From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: click the icon is a dialog asking what program I want to use to run it. I tried selecting gambas but with no joy. I have checked the permissions on the file and as far as I can tell it is executable. Sorry if this has been asked before but a search through the archives threw up way too many results to wade through. I know this is more a linux question than a gambas one but it has me pulling out what little hair I have. -- Cheers Ray From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Nigel > Message date : Jan 11 2005, 06:02 PM > From : "John G. Ruff" > To : gambas-user at lists.sourceforge.net > Copy to : > Subject : Re: [Gambas-user] MySQL Connect > Benoit, > > Thanks for your help. The other packages on my system match > yours, and I installed: > libmysql14-4.1.8-1mdk > libmysql14-devel-4.1.8-1mdk > > And the result is the same. Also installed is: > libmysql12-4.0.20-3.1.101mdk > > When I try to uninstall it, it also wants to uninstall: > gambas-gb-db-mysql-1.0.1-1rk > gambas-ide-1.0.1-1rk > > I'm in over my head here, but is it possible that the problem is > related to Gambas (db-mysql) being dependant upon an older > version of the MySQL components and they in turn are not > compatible with the current MySQL version? > > jr > > > Benoit Minisini wrote: > > > > On Saturday 08 January 2005 23:37, John G. Ruff wrote: > > > When I run the Database example program, I still get the same > > > error: > > > > > > Cannot open database: Client does not support authentication > > > protocol requested by server; consider > > > upgrading MySQL client > > > > > > I did a fresh install of Mandrake 10.1 Official (32 bit) on a > > > different hard drive. I'm using Gambas 1.0.1. I downloaded & > > > installed MySQL-Client 4.1.8a from MySQL.com. > > > > > > The server is running Mandrake 10.1 Official (32 bit) in runlevel > > > 3 (text multi-user mode) and MySQL Server 4.1.8a. > > > > > > I am able to connect to, access and update this same server from > > > my Visual Basic 6 / SP6 programs, so the credentials, etc., > > > should be OK. > > > > > > Any ideas what is wrong? I am at a loss for what to try next. I > > > am just trying out Gambas, I really want to turn off my remaining > > > Windows stuff and move entirely to Linux. Is it possible that the > > > MySQL server is sending a request for something that Gambas does > > > not / cannot respond to? Is anyone else successfully running > > > anything similar to this? > > > > > > Thanks in advance for any help. > > > > > > jr > > > > > > -=-=-=-=-=-=-=-=-=-=- > > > John G. Ruff > > > Wayzata, MN USA > > > -=-=-=-=-=-=-=-=-=-=- > > > > > > > Mmm... I have installed on my Mandrake 10.1 the following MySQL related > > packages: > > - MySQL41-4.1.5-0.1mdk > > - MySQL41-client-4.1.5-0.1mdk > > - MySQL41-common-4.1.5-0.1mdk > > - libmysql14-devel-4.1.5-0.1mdk > > - libmysql14-4.1.5-0.1mdk > > > > The MySQL server is running as it is configured by default on Mandrake, and I > > can connect to it with the user 'root' without any password. > > > > The Gambas mysql driver just takes the values of of the Connection object > > properties and pass them to the mysql function mysql_real_connect(). > > > > Can you compare your mysql server configuration files with the original files > > installed on the Mandrake 10.1 ? Can you do the same thing with the contents > > of the 'user' table in the system database 'mysql' ? > > > > Regards, > > > > -- > > Benoit Minisini > > mailto:gambas at ...1... > > > > ------------------------------------------------------- > > The SF.Net email is sponsored by: Beat the post-holiday blues > > Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. > > It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------- > The SF.Net email is sponsored by: Beat the post-holiday blues > Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. > It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Whatever you Wanadoo: http://www.wanadoo.co.uk/time/ This email has been checked for most known viruses - find out more at: http://www.wanadoo.co.uk/help/id/7098.htm ------=_Part_57158_21626056.1105518154657 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable

    John,

    I'm jumping in late on this one and may have missed something already me= ntioned: I believe the message relates to different the gambas client for M= ySQL using or being compiled against an older client than the 4.1 tree.&nbs= p; 4.1 introduces a new password encryption routine etc. which is not backw= ard compatible.

    From you information it appears that you have the correct client stuff (= development files etc.), but I do not know if you have had an older version= of MySQL on your box in the past.  Since your latest updates etc. hav= e you rerun configure and recompiled gambas so that it done against the new= MySQL version.


    Nigel

    > Message date : Jan 11 2005, 06:02 PM
    > From : "Jo= hn G. Ruff"
    > To : gambas-user at ...625...= t
    > Copy to :
    > Subject : Re: [Gambas-user] MySQL Connect
    &= gt; Benoit,
    >
    > Thanks for your help. The other packages on my= system match
    > yours, and I installed:
    > libmysql14-4.1.8-1mdk=
    > libmysql14-devel-4.1.8-1mdk
    >
    > And the result is the= same. Also installed is:
    > libmysql12-4.0.20-3.1.101mdk
    >
    = > When I try to uninstall it, it also wants to uninstall:
    > gambas= -gb-db-mysql-1.0.1-1rk
    > gambas-ide-1.0.1-1rk
    >
    > I'm in= over my head here, but is it possible that the problem is
    > related = to Gambas (db-mysql) being dependant upon an older
    > version of the M= ySQL components and they in turn are not
    > compatible with the curren= t MySQL version?
    >
    > jr
    >
    >
    > Benoit Minis= ini wrote:
    > >
    > > On Saturday 08 January 2005 23:37, Jo= hn G. Ruff wrote:
    > > > When I run the Database example program= , I still get the same
    > > > error:
    > > >
    > &= gt; > Cannot open database: Client does not support authentication
    &g= t; > > protocol requested by server; consider
    > > > upgra= ding MySQL client
    > > >
    > > > I did a fresh install= of Mandrake 10.1 Official (32 bit) on a
    > > > different hard d= rive. I'm using Gambas 1.0.1. I downloaded &
    > > > installe= d MySQL-Client 4.1.8a from MySQL.com.
    > > >
    > > > T= he server is running Mandrake 10.1 Official (32 bit) in runlevel
    > &g= t; > 3 (text multi-user mode) and MySQL Server 4.1.8a.
    > > >=
    > > > I am able to connect to, access and update this same ser= ver from
    > > > my Visual Basic 6 / SP6 programs, so the credent= ials, etc.,
    > > > should be OK.
    > > >
    > > = > Any ideas what is wrong? I am at a loss for what to try next. I
    >= ; > > am just trying out Gambas, I really want to turn off my remaini= ng
    > > > Windows stuff and move entirely to Linux. Is it possib= le that the
    > > > MySQL server is sending a request for somethi= ng that Gambas does
    > > > not / cannot respond to? Is anyone el= se successfully running
    > > > anything similar to this?
    >= > >
    > > > Thanks in advance for any help.
    > > &= gt;
    > > > jr
    > > >
    > > > -=3D-=3D-=3D-= =3D-=3D-=3D-=3D-=3D-=3D-=3D-
    > > > John G. Ruff
    > > &g= t; Wayzata, MN USA
    > > > -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-= =3D-
    > > >
    > >
    > > Mmm... I have installed o= n my Mandrake 10.1 the following MySQL related
    > > packages:
    &g= t; > - MySQL41-4.1.5-0.1mdk
    > > - MySQL41-client-4.1.5-0.1mdk> > - MySQL41-common-4.1.5-0.1mdk
    > > - libmysql14-devel-4= .1.5-0.1mdk
    > > - libmysql14-4.1.5-0.1mdk
    > >
    > &g= t; The MySQL server is running as it is configured by default on Mandrake, = and I
    > > can connect to it with the user 'root' without any passw= ord.
    > >
    > > The Gambas mysql driver just takes the valu= es of of the Connection object
    > > properties and pass them to the= mysql function mysql_real_connect().
    > >
    > > Can you co= mpare your mysql server configuration files with the original files
    >= > installed on the Mandrake 10.1 ? Can you do the same thing with the c= ontents
    > > of the 'user' table in the system database 'mysql' ?> >
    > > Regards,
    > >
    > > --
    > &g= t; Benoit Minisini
    > > mailto:gambas at ...1...
    > >
    >= > -------------------------------------------------------
    > > = The SF.Net email is sponsored by: Beat the post-holiday blues
    > > = Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
    > = > It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt<= BR>> > _______________________________________________
    > > G= ambas-user mailing list
    > > Gambas-user at lists.sourceforge.net
    &= gt; > https://lists.sourceforge.net/lists/listinfo/gambas-user
    > <= BR>>
    > -------------------------------------------------------> The SF.Net email is sponsored by: Beat the post-holiday blues
    >= Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
    >= It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
    &= gt; _______________________________________________
    > Gambas-user mai= ling list
    > Gambas-user at lists.sourceforge.net
    > https://lists.s= ourceforge.net/lists/listinfo/gambas-user
    >



    Whatever you Wanadoo

    This email has been checked for most known v= iruses - find out more here= ------=_Part_57158_21626056.1105518154657-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: http://xplanet.sourceforge.net Daniel -----Original Message----- From: gambas-user-admin at lists.sourceforge.net [mailto:gambas-user-admin at lists.sourceforge.net] On Behalf Of Benoit Minisini Sent: 01 February 2005 15:16 To: gambas-user at lists.sourceforge.net Subject: [Gambas-user] About donations I'd like to make a world map on the web site, with a flag for each people that made a gift - the bigger the gift, the bigger the flag :-) This way, giver will be seen more easily than on the moving label of the about dialog in the IDE. So I'm looking for a vectorized world map. Does anyone know how I can find that ? Thanks in advance, -- Benoit Minisini mailto:gambas at ...1... ------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: This program shows the transport of data from one form to the other.=20 To get the program going, you need: Two forms F1 and F2. On F1 you need 2=20 textboxes and 1 commandbutton. On F2 you need 2 textboxes and 4=20 commandbuttons.=20 The code for F1:=20 ' F1.class=20 STATIC PUBLIC SUB Main() DIM hForm AS Form hForm =3D NEW F1 hForm.show END PRIVATE hNew AS F2 PUBLIC SUB Button1_Click() hNew =3D NEW F2(textbox1.text) hNew.Show ME.hide END PUBLIC SUB _new(OPTIONAL t$ AS String) Textbox2.Text=3Dt$ END The code for F2:=20 ' F2.class:=20 'Here the data arrive from F1=20 'the parameter has TO be OPTIONAL, 'otherwise it would be impossible to 'initialize an instance of this class 'without a parameter=20 PUBLIC SUB _new(OPTIONAL t$ AS String) Textbox1.Text=3Dt$ END 'Here some data are added to the text of F1=20 PUBLIC SUB Button1_Click() textbox2.text =3D Textbox1.Text & "Miller !" END PUBLIC SUB Button3_Click() textbox2.text =3D Textbox1.Text & "Smith !" END PUBLIC SUB Button4_Click() textbox2.text =3D Textbox1.Text & "Mayr !" END 'Here it goes back to F1 PRIVATE hNew AS F1 PUBLIC SUB Button2_Click() hNew =3D NEW F1(textbox2.text) hNew.Show ME.Close END Am Montag, 28. Februar 2005 17:01 schrieb Naveen Agarawal: > Hello > > I am trying to write a small application using mysql and gambas. I have g= ot > three forms. First form is a login form which asks the user to login using > a user name and a password. It opens another form if the user gives corre= ct > user name and password. In the second form I have a combobox to be > populated with a field in a table. My problem is that the variable conn > which I defined in the first form is not visible in second and third form. > I have added the line Private conn as new connection as the first line. A= ny > solution? > > Thanks in advance > > Thomas Kleindienst wrote: > Hello List! > > Is there any possibility to write a blob into a database? > > I've binary information (it's a png-file) in a > byte[] > array. I want to store this in my database as a blob, but I don't know how > to do it with gambas... > Any help appreciated... > > btw... Is there a possibility for > image or picture > to load the image not from file but from > byte[] ? > > Thanks and regards, > > Thomas > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=3D6595&alloc_id=3D14396&op=3Dclick > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > Every body has his shares of ups and downs but one should never say no to > life. > > --------------------------------- > Do you Yahoo!? > Yahoo! Mail - You care about security. So do we. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: checkbox : click Click (event)=20 EVENT Click ( )=20 Raised when the user checks or unchecks the check-box.=20 Regards, --=20 Laurent Carlier jabber : LordHeavy at ...943... From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Second problem, less blocking, in script sql of importation I had" \n\r" wh= ich=20 were indeed treated by mysql which posts me well the returns line in detail= =20 view.=20 on the other hand the textbox of Gamba do not post them and puts all end t= o=20 end. I will make a small nap, I hope to have a response to my alarm clock = :)=20 thank you in advance=20 Carl (sorry for my english !) From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : gambas-user at lists.sourceforge.net Cc : Date : Wed, 14 Sep 2005 15:45:58 +0800 Subject : Re: [Gambas-user] Modbus on serial port THANKS but the Rob Kudla's web site is down for a problem with the server's mather board . > Werner wrote: > > > ariafrancesco at ...86... wrote: > > > >> I am trying to implement the serial modbus protocol on gambas. > >> Bookcase was my intention to create a class that all could use but I > >> have a problem that I do not succeed to resolve. > >> The instrument with which I try to communicate seems that it > >> understands what I send but does not answer to me . > >> What you know version 1,0,3 of gambas has of the problems with the > >> object of the serial port? > >> In order to create the string to send to the instrument I use: > >> > >> strOutput =3D Chr$(CByte(Val ("&H "& strNode))) & Chr$(3) & > >> Chr$(CByte(Val ("&H" & Left$(varTemp, 2)))) & Chr$(CByte(Val ("&H "& > >> Right$(varTemp, 2)))) & Chr$(0) & Chr$(1) > >> in order then to send it with: > >>=0D > >> PRINT # Sport, (strOutput & Chr$(CByte(Val("&H "& Right$(strCRC, =0D > >> 2)))) & Chr$(CByte(Val("&H" & Left$(strCRC, 2))))) > >> Is possible that problem is the character set ? > >> Gambas use UTF8 character set so is possible that using the Chr$ > >> function the instrument does not understand? > >> P.S. I sure that the instrument receives the string , in fact it > >> count the message and understand that it is for he (strNode =3D "1" > >> node 1 of net modbus 485) > >> HELP!! > >> > >> Is possible that I'm successful to write an OCX for the modbus in VB6 = =0D > >> and does not succeed to make of the porting on Gambas!!!!! > >> P.S. 2 :-)) where I can find the rpm of last stable gambas for > >> Mandriva? > >> THANKS To ALL > >> > >> > >> > > The latest stable version is 1.0.11. The download for all > > distributions starts here: http://gambas.sourceforge.net/download.html > > To find out if there is a problem with character conversion you might > > want to hook up with a second computer using a terminal emulator > > program that can display SOH DEL ESC NUL and all the other control > > characters. Alternatively you could write a small gambas program for > > it simulating modbus simple replies. > > > > Just my 2 cents. > > > > Regards, > > > > Werner > > > > I just tried Rob Kudla's web site to look up Gambas for Mandriva but > > the site just serves an empty page. Tough luck. > > =0D > Werner > > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. > Download it for free - -and be entered to win a 42" plasma tv or your very > own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : gambas-user at lists.sourceforge.net Cc : Date : Mon, 19 Sep 2005 08:53:31 -0500 Subject : Re: [Gambas-user] Convert an Hex To integer (Val Function)=0D > Put an ampersand at the end, like this: > > Val("&HC3C2&")=0D > > it returns 50114. > > Saludos, > Pablo Vera > __________________________________________________________1 > > ariafrancesco at ...86... wrote: > > Why the function : > > > > Val("&HC3C2") respond with -15422 (a short) > > when the correct value is 50114 (an integer) ?? > > > > How can I convert an Hex like C3C2 in an Integer ?? > > > > =0D > > > > > > > > ------------------------------------------------------- > > SF.Net email is sponsored by: > > Tame your development challenges with Apache's Geronimo App Server. > > Download it for free - -and be entered to win a 42" plasma tv or your v= ery > > own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.p= hp > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. > Download it for free - -and be entered to win a 42" plasma tv or your very > own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php= =0D > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : "gambas-user" gambas-user at lists.sourceforge.net Cc : =0D Date : Mon, 19 Sep 2005 22:14:25 +0200 Subject : Re: [Gambas-user] Convert an Hex To integer (Val Function) > Thaks Pablo . > Now my program works . > > I'm near to implemts the modbus protocol on Gambas.=0D > For the moment i can read from a Serial modbus net (RS485). > Last step is implemt write OP (50% of the work is done) > > Thanks to all :-)) > > ---------- Initial Header ----------- > > From : gambas-user-admin at lists.sourceforge.net > To : gambas-user at lists.sourceforge.net > Cc : > Date : Mon, 19 Sep 2005 08:53:31 -0500 > Subject : Re: [Gambas-user] Convert an Hex To integer (Val Function) > > > > Put an ampersand at the end, like this: > > > > Val("&HC3C2&") > > > > it returns 50114. > > > > Saludos, > > Pablo Vera > > __________________________________________________________1 > >=20 > > ariafrancesco at ...86... wrote: > > > Why the function : > > > =0D > > > Val("&HC3C2") respond with -15422 (a short) > > > when the correct value is 50114 (an integer) ?? > > > > > > How can I convert an Hex like C3C2 in an Integer ?? > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > SF.Net email is sponsored by: > > > Tame your development challenges with Apache's Geronimo App Server. > > > Download it for free - -and be entered to win a 42" plasma tv or your= very > > > own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo= .php > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > > > > > > > > ------------------------------------------------------- > > SF.Net email is sponsored by:=0D > > Tame your development challenges with Apache's Geronimo App Server. =0D > > Download it for free - -and be entered to win a 42" plasma tv or your v= ery > > own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.p= hp > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. > Download it for free - -and be entered to win a 42" plasma tv or your very > own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________=0D > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : gambas-user at lists.sourceforge.net Cc : Date : Tue, 20 Sep 2005 11:22:11 -0500 Subject : Re: [Gambas-user] Convert an Hex To integer (Val Function) > What ??? > > Did you try to convert a negative hex number ?, like: > > Val("-&HC3C2&") > > this returns: -50114 > =0D > Or what do you mean ? > > Saludos, > Pablo Vera > > ariafrancesco at ...86... wrote: > > :-(( > > > > Work but only unsigned . > > =0D > > :-(( > > > > ---------- Initial Header ----------- > > > >>Thaks Pablo . > >>Now my program works . > >> > >>I'm near to implemts the modbus protocol on Gambas. > >>For the moment i can read from a Serial modbus net (RS485). > >>Last step is implemt write OP (50% of the work is done) > >> > >>Thanks to all :-)) > >> > >>---------- Initial Header ----------- > >> > >>>Put an ampersand at the end, like this: > >>> > >>> Val("&HC3C2&") > >>> > >>>it returns 50114. > >>> > >>>Saludos, > >>>Pablo Vera > >>>__________________________________________________________1 > >>> > >>>ariafrancesco at ...86... wrote: > >>> > >>>>Why the function : > >>>> > >>>>Val("&HC3C2") respond with -15422 (a short) > >>>>when the correct value is 50114 (an integer) ?? > >>>> > >>>>How can I convert an Hex like C3C2 in an Integer ?? > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. > Download it for free - -and be entered to win a 42" plasma tv or your very > own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: =20 "login" (if the login does not exist), and "name". So if I use a login of= =20 "Benoit" and "Benoit" exist but pass an incorrect "password" I do not get a= n=20 error until I attempt to access data. John From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: able to figure out how to go through the whole tree of the=20 document, adding or changing nodes and setting attributes as=20 necessary. But you would need to know what's legal in the SVG=20 format to do this. And in gb.qt, in theory, loading an SVG into a Drawing object and=20 drawing to it should be just the same as drawing to a=20 DrawingArea object. In practice, I tried 3 or 4 SVG's scattered=20 around my hard drive and Qt couldn't parse any of them. They=20 appeared to have trouble with sodipodi:* tags that I assume were=20 added by Inkscape. But even Inkscape gave me some file not=20 found problems with a couple of them. I think support for SVG in all software is going to be sketchy=20 for another year or two yet, but Firefox 1.5's built-in support=20 should help push its acceptance. Rob From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: ; TINYBLOB, BLOB, MEDIUMBLOB and LONGBLOB are binary strings whilst TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT are more akin to CLOB. Nigel > Message Received: Jan 10 2006, 11:45 PM > From: "Benoit Minisini" > To: gambas-user at lists.sourceforge.net > Cc: > Subject: Re: [Gambas-user] Wanted String got Blob Instead gambas 1.9.23 > > On Tuesday 10 January 2006 19:09, Lorenzo Tejera wrote: > > Errrrrr.... > > > > Probing the last version, some software who works fine, now said: > > > > Wanted String got Blob Instead > > > > and my Field is a Mediumtext!!! > > > > Mysql server version: 5.0.18-Debian_1-log > > > > Any idea Benoit? > > > > In mySQL (I dislike him more and more), there is no difference between TEXT > fields and BLOB fields. So to implement it in the gambas database driver, I > decided to use "LONG TEXT". > > It is strange that you tell that your field is a "MEDIUM TEXT". Logically, > only "LONG TEXT" are recognized as BLOB by the gambas mysql driver... > > Are you sure that your field is "MEDIUM TEXT" ? > > I can make a mistake of course, as sometimes mySQL identifies the datatype of > a field precisely (TINY, MEDIUM, LONG TEXT/BLOB), and sometimes it just tells > you that it is a TEXT field, and I have to check the maximum length of the > data to know if it is TINY, MEDIUM, or LONG. > > Sorry for that! :-) > > -- > Benoit Minisini > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: public myTree as new mytreeview(me) mytree.x = 123 mytree.y = 123 mytree.width=123 mytree.height= 123 mytree.add("1","test") mytree.add("2","test1") This is showing nicely on the form. I now tried to activate the click event. public sub mytree_Click() message("You clicked a item") end sub. When I click test or test1 it do not fire the click sub. Also tried the mytree.Menu() sub and if It do not fire either. Regards Rohnny -- ----------------------------------------- Gambas brings Basic to Linux. My Gambas Community http://forum.stormweb.no From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: ./configure make make install You start gambas with gambas2 from console. -- Regards Rohnny Stormo ----------------------------------------- Gambas brings Basic to Linux. My Gambas Community http://forum.stormweb.no -- View this message in context: http://www.nabble.com/Re%3A-ERROR%3A-2%3A-Cannot-load-class-%27Project%27%3A-Bad-format-in-extern-section-t1185789.html#a3130960 Sent from the gambas-user forum at Nabble.com. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: To : gambas-user at lists.sourceforge.net Cc : Date : Thu, 2 Mar 2006 17:35:02 +0100 Subject : Re: [Gambas-user] Release of gambas 1.9.26 I have downloaded 1.9.26, and I get this error message when I try to run ga= mbas: Cannot load class 'TimeBox': Unable to load class file Now I am not able to run Gambas. Francesco > On Thursday 02 March 2006 17:27, johnf wrote: > > On Thursday 02 March 2006 05:27, Benoit Minisini wrote: > > > EXPORT macro declared in gambas.h > > > > did you forget this too or have I the wrong download? > > "Cannot load component 'gb.qt.kde':/usr/local/lib/gambas2/gb.qt.kde.so: > > undefined symbol: GB_INIT" > > > > John > > > > Forgot... Don't strike me... > > Here is a patch for ./src/gb.qt.kde/src/ > > -- > Benoit Minisini > From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Kind/type Sign/Signature Conditional as =3D, IS , NOT=20 Relational as <, >, =3D, <>, =3D> an <=3D Arithmetic as +, -, *, /, ^ Logical as AND, OR, NOT, XOR, (and the shift plus rotate) The first two has as result true/false The last two has as result a nummerical value. Also the last two can be converted to Boolean true/false by using "FALSE" if value is 0 and else it is "TRUE". It is not invalid to name each of those four "expresion" but note the difference between them. Like car, boot, train as transport but transport is not car if used on sea. In real here is "expresion" equal to "(expresion kind expresion)" Shorted to "E" equal to "(E K E)". For every "E" you be able to use then second "(E K E)" as replacement and the ( and ) tell you the inner must be first evaluated. For every K you can use one of the types C|R|A|L by using the Sign for it. In the background however the difference of the kinds determines how the result must be obtained by the interpreter/compiler. For easynes in manuals they are mostly written as "expresion" as PB does. By the way the automatic conversions of the expresion to the kind of=20 expresion in need it is easy to write "expresion" too. Not wrong but also not clear what form to use as "expresion". Gambas is in this way also clever to do auto-conversion. So using *expresion* as PB does is not incorrect(correct) for Gambas too. The suggestion made by Eilert about layout is IMHO a good one. --- Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Value =3D Eval ( Expression AS String [ , Context AS Collection ] ) AS Vari= ant As Eval is an calculator where Expresion is a string, the string should represent a expression as i.e. "123 + 321 - 4". Your strPatern does not look like such expresion to me. More, the last error message "Type mismatch : wanted float got string inste= ad" is telling the right thing. asfd is here a local variable in the expresion itself, whitout nummeric va= lue Like is not a calculator operator as +-*/ are "*" is not a representation of a number or local variable Context is a collection of value's to use for the variable names in the str= ing expression. context["asfd"]=3D123 context["fdsa"]=3D321 strPatern=3D"asdf + fdsa + 4" Value=3DEval(strPatern,context) This should work as doing "123 + 321 - 4" Again from help: The optional context is a collection that must contain the=20 value of each undefined symbol of Expression. So there is no bug here based on you usage of Eval. The x00 you see are the missing values from the missing context collection. Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: > Hi, I was thinking about some kind of tool to generate documentation=20 > directly from code, like doxygen. I think too much. I have the idea there is less doxgen code in the source as in the=20 past has been (the 0.xx series) or it must be in the m4 macro's.=20 It would be nice if, say the most common used languages, be available as sql dump. i.e. 'en', 'es', 'fr' and for the area of usage also 'de', 'it' I would be happy if it is 'as is' with the edit links not working. Available as .tar.bz (even as .torrent can be nice) The not offline( local) missing (more) correct documentation was/is a=20 major point for me to. I have a 8Mb link but at work it is 1.5Mb and=20 only if it uberhaupt works :( Greets from sunny Holland Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: If no length is specified for a string, it is is read from the stream. The string then must have been written with the WRITE instruction. Maybe it helps to PRINT ASC(LEFT(s)) and PRINT ASC(left(s,-1))=20 after each READ. Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: FExplorer.txvExplorer_Link.775: /usr/local/share/gambas2/help/help/help/how= to?en FExplorer.txvExplorer_Link.775: /usr/local/share/gambas2/help/help/help/doc= /faq?en FExplorer.txvExplorer_Link.775: /usr/local/share/gambas2/help/help/help/doc= /diffvb?en it seems that there's one intrusive "/help".=20 2) Renaming project files is always impossible, even when the project tree has the focus.=20 When I select a file and try to Rename it, I get this error message: Unable to rename ... 3) It seems that the Gambas2 IDE window doesn't fit completely in Desktop dimensions, on start up. The scroll bar down arrow of the project tree is badly displayed and the panStack buttons are missing.=20=20 My English is bad, so please take a look at the attached screenshot.=20 After resizing the window and maximizing again, the bug goes away.=20 Also, I tested that adding these two lines in FMain Form_Open solves the bug: ME.Width =3D Desktop.Width ME.Height =3D Desktop.Height My desktop size is 1024x768. Regards, Stefano Palmeri --Boundary-00=_VMfjEvzRQWWdwSx Content-Type: image/jpeg; name="bottom.jpg" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="bottom.jpg" /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a HBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAA2BAADASIA AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3 ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3 uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD1Dwd/ yDPD3/YJP/tGuvrkPB3/ACDPD3/YJP8A7Rrr6qfxMmHwoKKKKkogT/j/AJv+uSfzekv5WgsZZUJD IN3GO31prRs9/JtmePESfdA55b1Bpt1byNZzJ5k029du3Cd+44H86APOLv4uWlv88LG7gCgtPA4K Kx/hLbMZHsTWx4N8ex+Lb2SO3JCwyKjqWDZ3JI3ZRj7g/M1wdv8ABa1jtMLqdxs7brUKCPUfOQR7 11Hw58CP4T1K5eKSaWOaVXcyRLHt2o4HG4k53+nagDu5vEuhwXNxbSaxp4ubZGkmg+0p5kaqNzEr nIAAJOaq2PjPw7f6Bb62usWMNjMFG+e5jTy3KhvLc7sK4BGVzkVi6fpWr2niF4LGyvLXSJZrmW5W 8kt5Itz7iHgKkygs7ZIbAAJGOlU7O28V2nhvw5p0WnX9qlhaC0u/sr2bzs6RxqjoZWZPKPz5zh+B wKAOzudf0ayhimutXsIIpY/NjeW5RQ6ZA3Ak8jLKM+49aUa7pB+141Wx/wBDXfc/6Qn7hcZy/Pyj Hc1w3hjwlqto2lf2pYKRbWGqQtveN9rTXStGPlwOY93QAAcYHSsvW/Dt/pXgGN5rNYVtPBlzZ3ZV 1O24IhbacH5uVlORkdeeeQD1Gy1bTdSM4sdQtLowNtmEEyv5Z9GweDx3pllrukakk72Gq2N0sH+u MFwjiP8A3sHjoetcsun67LqNxqVjo8OmT2ujSWNtFNIjJPMSrJ9wn92u0gbsH5zwKy7fw9rd/rNz cavp+p3NjNodxYzRXU1nHI7s8ZCJ5GAFID4LMcc/d7gHdWviLRL6JpbTWNPuI1kSJniukcB3OFUk HqTwB1JqxJqVjDcG3lvbaOYFAY2lUMC5IQYzn5irAeuDjpXCtpPia70e6jktrmRLW7sbmxgv3txc yCGUSSIzRHZjCgKSc5zn1qebQ9W8QXnie4udOk00XljZpYNNLG7rNC8zqzBGYAq7IepGMc5yAAdf eanb2z+UtzZeeskKyRzXIjKiR9q9icnkKMDcRjI6jP1nxZp2kzxWiXFrcX73dtbvaLcqJUWaVI95 Xk4G/PTn1Ga55NB1u+0Q319YiLWL7W7O9uLcSo3kQwzx4XdnBxHGWwD1Y4yaq3Ph/WRHDpi6H5/l +JE1Q6j50QUxG6EpbBbfvVDtIxjC8E8CgDvP7Y0z+1P7M/tG0/tDG77L56+bjGc7M56e1A1jTDqh 0wajaHUANxtfPXzcYznZnPT2rhbXwpqcOsGC7GrzWw1ltSjmt3sxb8yl1LFl8/IB2kDOQMAgHAmj 8P6sJYtMOmYEevNqh1XzY9rRmYy4xnfv2nysbcY744oA7e+1Kw0yNZL+9trRHJCtPKsYYgFjgk9g CfoCahbXdHSyhvW1WxW0nz5U5uEEcmASdrZwcBWPHYH0rmfGUsz654WK6XJcNDq7lIXaMecBaytu TLYBHON235l7DBqrZ+GdRm1TTb6501YoG16fUpLVnRvsyG1eNScEgsZAGO0nBf2JoAZdXtpqOoah d2NzDc20lwCk0EgdGxDEOGHB5BqhNV+7hFvqurIqKgN6z4Uf3o42z+Oc/jVCauuGyOaW7Oz0P/kX tL/684f/AEWted+L/wDkab3/AIB/6AteiaH/AMi9pf8A15w/+i1rzvxf/wAjTe/8A/8AQFrle50L Yw6KKKQwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigA ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAPRfAP/ACAp/wDr5b/0Fa6quV8A/wDICn/6 +W/9BWuhnvPKnEEdvLPLt3sse0bRnAJLEDnBwM54PpQBZoqn9suf+gXdf9/YP/jlH2y5/wCgXdf9 /YP/AI5RYC5RVP7Zc/8AQLuv+/sH/wAco+2XP/QLuv8Av7B/8cosBcoqn9suf+gXdf8Af2D/AOOU fbLn/oF3X/f2D/45RYC5RVP7Zc/9Au6/7+wf/HKPtlz/ANAu6/7+wf8AxyiwFyiqf2y5/wCgXdf9 /YP/AI5R9suf+gXdf9/YP/jlFgLlFU/tlz/0C7r/AL+wf/HKPtlz/wBAu6/7+wf/AByiwFyiqf2y 5/6Bd1/39g/+OUfbLn/oF3X/AH9g/wDjlFgLlFU/tlz/ANAu6/7+wf8Axyj7Zc/9Au6/7+wf/HKL AXKKp/bLn/oF3X/f2D/45R9suf8AoF3X/f2D/wCOUWAuUVT+2XP/AEC7r/v7B/8AHKPtlz/0C7r/ AL+wf/HKLAXKKp/bLn/oF3X/AH9g/wDjlH2y5/6Bd1/39g/+OUWAuUVT+2XP/QLuv+/sH/xyj7Zc /wDQLuv+/sH/AMcosBcoqn9suf8AoF3X/f2D/wCOUfbLn/oF3X/f2D/45RYC5WD41/5EvV/+vZq0 vtlz/wBAu6/7+wf/ABysXxZdrceDtbjMUkM0dsd0cmMgHocgkEHB6HsfSrh8SJn8LJ/B3/IM8Pf9 gk/+0a6+uQ8Hf8gzw9/2CT/7Rrr6U/iYQ+FBRRRUlECf8f8AN/1yT+b1K7hF3NnHTgZqu0qxX8m4 OcxJ91C3dvQU5p0lUBRIDuU/NGyj7w9RQBQuodLtwZJvtESseiNMq59gvAq7YR2qWwe05jk+beWL Fu3JPJ9OawvFDyXRjsoTyx25Hqf8BV/w6yxaeLTzC3ku0aZ/ujpXLRryq1ZxS92Ol+76/cbTpxhT jJvV/kbFFcTH4h1qbVrzT7uW102VjcpZ282nzEyBA2yRZ94STgBygAIGRkYzVXSPEGqWvgTw693r FtJqd/ZxTxn+y7i6kePykJ3RxyFnYFhukyB8w+UV1GJ6BUVzbQXltJbXUMc8EqlJIpVDK6nqCDwR XBWPjPXtbj0tNPi0+3muLK9nna5glIV7edYuF3KwDEnhuRkehBhl8ea3BoT6nLb6f/pXh6XWrOJU f90U8v5JDu+fPmqcgLjBHPWgD0iiuVg8Qahp+ryWevS6csLadJqKXECsiwLGyh1fcx3Ab1IYbc4P yiuU13xprL6Nr1lFdIs66NNf215HplzZlPLZQwAlb5iQ42upwDyQeAQD1WiuO13xBqejwx2q6lYz apHA080cWj3M4dSTs+WJ2MSnBG5i2SCQO1Yunavq+qeIdQ1jR/sMBufD+nXrJeKz9fPYINrLjqct zjA+U54APS6K5bQ/FcutXV0whjithpFnqMIYHeDOJSQxzggeWvQDv+HP6D4iaS51HX72a2tZrrw/ pM7MY2aNZZDPgBAdzfMwAUHJ4Gc0Aek0V5dfeLNdv4Z7C3u47e7tNT0z/SjptxbCWKefZtMMjhhy pz8xDLkcE5GxqPinXLKHW7xBp0lpoBjjvEaF1kum8pJJGj+fEYxINoIfJGM96AO0ltoJpYZZYY5J IGLxOyAmNiCpKnscEjI7EipawvFur3uiaNHc6fHbvcyXltbKtxnZ+9mSM5wcjhuv6GsLUPFWu6Yb 7T5E0651K3urCOOVY3jikjuZfL5XcxVhtbncexx2oAbq3/Ib1T/r4X/0RFWTNV65S7TUNRW/mgmu RcjfJBEYkP7mLGFLMRxjufXjpVGauuGyOaW7Oz0P/kXtL/684f8A0Wted+L/APkab3/gH/oC1b8d 6/r3h34WWF1oVqzyNaQpNcrybVDGvzhe/pnt1qp4v/5Gm9/4B/6Atcr3OhbGHRRRSGFFFFABRRRQ AUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAB RRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFF FFABRRRQAUUUUAFFFFABRRRQB6L4B/5AU/8A18t/6CtbTNt1W7P/AEwt/wD0KavML3Xda0Dwhplz oMLXF5Lrywm2Az56mFiUP5A57Yz2r0V5m+2SGZBDNJbW7GIsCQQZdwB74LAZHqPWmgLvm0ebVLza PNqhF3zaPNql5tHm0AXfNo82qXm0ebQBd82jzapebR5tAF3zaPNql5tHm0AS32ox2Fo1xKHYAqoV BlmZmCqo9ySB+NUpPEltaRK+owXNizbiElQSHauNznyywVRkZYkAd8U65jhvLd7e4TfE/UZx0OQQ RyCDggjkGqEmhabNEscyXEoXdzJdysSGxuUktkqdoyp4OOlAFi48X6XAJPnuJGjl8orHbSEsfNWF tvHz7XYA7cn9KB4x0dzfpHcu09jA1xPAYnR1RRk8MB7fmKjk0jTpVUPAflZ2UiRgQXkWViCDwd6q 3tjjFRLoGlKZz5EjefFLC4e4kYbZCDIAC3G4gEkYOeaANGbxLplveTWs1y0ckJIkZonCKRH5hG/G 3Oz5sZzjPpUNj4u0fU/s/wBiu2n89nVPLhkP3du7Py/KBvXk4HIpk+mWFyZDNbiTzJDK4ZiQzGLy iSM/3Plx0/HmltdPtbOSOSPzmkjV0V5riSUhW2lhl2PHyL+XuaANrzaPNql5tHm0AXfNo82qXm0e bQBd82jzapebR5tAF3zaPNql5tHm0AXfNo82qXm0ebQBd82uc8Utu0PxEf8AqHR/+hSVrebWH4hf f4f8SEHIFjGp9jlzj8iPzFOPxImXws1/B3/IM8Pf9gk/+0a6+uQ8Hf8AIM8Pf9gk/wDtGuvqZ/Ex w+FBRRRUlECf8f8AN/1yT+b0653eQSkbSMCCFUjJwR6kCmp/x/zf9ck/m9LeXUdlZT3cufLgjaR8 dcKMn+VAGBJZ3kt49xJZXTcny1zENgI/3+TWlo1m1tbyGWBonaVmAcgkA/QkVzy+PIEv5HmVvsIw oeMAqWIyAM4bPXtj8a39N1+z1OZYYlmR3jMsYkTG9AQCQenG5fzqYuO0S5RnvJDYfDOlQamNREU8 lyrOyeddSypGXyGKIzFUyCR8oHBIqqngjQo7e2gigu41tdwgMd/cK0SsFBRWD5VPlX5AdvHStcal Ym2S5F7bGCSQRJKJV2s5baFBzgnd8uPXiqX/AAkel29r52o6ppdrlpcH7apTakmwnc23kHaGGPlY 7cnqaIE0/wALaLpfkfYrIQiCKaGICRyFSaQSSDBPdgD7dBgcVna94MtL3wrcaZpkMcNymky6XZPL K+2KJlUbT1yMxpyQTx7nO5caxpdpp6ahc6lZw2TgFbmSdVjbPTDE4OazNV8X6TpOmvqsl9ZS6alp JdeZFdK0kgVlUeWvRwS2M7hhiowd3ABNb+EtEt47uNbLzFu4fs8wnleXMXP7td7HanJ+VcD2qGLw ToEbSu1pLO81pJZSNc3c0xaB9paPLuTj5Rj05xjJq43iXQUtLe7bW9NW2uWKwTG7jCSkHBCtnDEH jir9xcwWltJc3M8cNvEpeSWVwqoo6kk8Ae9AGLJ4M0SUoZIbt2WLyGZr+ctLHuLbJDvzIoLNgPkA HA4qN/Anhx0jX7DKgS0ish5d3MmYIwQsbYcbl5OQc54znArTi17R54LueLVrGSGzz9pkS5QrBjrv Ofl6Hr6U+z1jTNRlnisdRtLqS3OJlgnVzGfRgDx0PWgCnfeFdG1GeOa4tGDpCLfEM0kStEOkbKjA OnJ+VgRyfWox4O0EWTWYsMQNbW9rjznyI4CTCAd2QVLEhgd2e/Aq7Y67pGpy+Vp+q2N3Jhjst7hJ DhSAxwCehZQfTI9a0KAMBfBWgrFeIbSZ2vPJ8+WS7meVzExaNvMLlgykkhgc9OeBh83hDRLi5Sea 1lkkVY1bddSkTeX9wyruxKRgcuGPvW5RQBz/AIp8Of2/YrAhB33dpJMk0r+W0UUwdgF5AYruGQBn jJ4GJ4fCmjQwNCLWRw9zFdO81xJJI8sbBo2Z2YsdpUYBOOMYxWzRQBwerf8AIb1T/r4X/wBERVkz Vq6va6tLrupmy09LiEzrmRrlY8HyY8jB/D86zJNN149dLgH/AG/R10xkkkYSi7nYaOiS+GtNjkVX RrGEMrDIIMY4Irzzxf8A8jTe/wDAP/QFr0bRlK6BpinqLOEf+OLXnPi//kab3/gH/oC1zvc3Rh0U UUgCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooo oAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiig AooooAKKKKACiiigAooooAKKKKACiiigAooooA9E8Boj6JIzKpKXTFSR907FGR+BI/GtS+srbU9Q khvo/NhgijdI9xUbnLgkkYPRB3xyfwzPAP8AyAp/+vlv/QVrXlbbqd2f+mNv/wChTU0BU/4RnQf+ gcv/AH+k/wDiqP8AhGdB/wCgcv8A3+k/+Kq35tHm1Qip/wAIzoP/AEDl/wC/0n/xVH/CM6D/ANA5 f+/0n/xVW/No82gCp/wjOg/9A5f+/wBJ/wDFUf8ACM6D/wBA5f8Av9J/8VVvzaPNoAqf8IzoP/QO X/v9J/8AFUf8IzoP/QOX/v8ASf8AxVW/No82gCp/wjOg/wDQOX/v9J/8VR/wjOg/9A5f+/0n/wAV VvzaPNoAqf8ACM6D/wBA5f8Av9J/8VR/wjOg/wDQOX/v9J/8VVvzayfEKXNxp6La/a2kWUMVtn2F hg8E+ZGccg8MDkDqMigC3/wjOg/9A5f+/wBJ/wDFUf8ACM6D/wBA5f8Av9J/8VXJzz+MHeeOyE8J jMaAOIpIlTyYy2wvh5JA5bBY7Tg5OatWx8Tvpuox3cl41y1pItq4W3iUvt+UsFYssm7PRtmMdDmk B0X/AAjOg/8AQOX/AL/Sf/FUf8IzoP8A0Dl/7/Sf/FVzkp8VS3Otxl5PsstrcLZgeUhSTgRbHVt3 IJPzAbSByep67zaYFT/hGdB/6By/9/pP/iqP+EZ0H/oHL/3+k/8Aiqt+bR5tAFT/AIRnQf8AoHL/ AN/pP/iqP+EZ0H/oHL/3+k/+Kq35tHm0AVP+EZ0H/oHL/wB/pP8A4qj/AIRnQf8AoHL/AN/pP/iq t+bR5tAFT/hGdB/6By/9/pP/AIqj/hGdB/6By/8Af6T/AOKq35tHm0AVP+EZ0H/oHL/3+k/+Ko/4 RnQf+gcv/f6T/wCKq35tHm0AVP8AhGdB/wCgcv8A3+k/+KrK8QwRWXhbxBZWy7LZbNZUjznaWLA4 J5x8oPOeproPNrn/ABK27QvEZ/6h8f8A6FJTj8SJl8LOW8PfFfTLHRNLQ6bdtNBaLEHDLyCFzxn/ AGRWv/wuqw/6Bt3+aUUV1eyg9Wjm9pJaXD/hdVh/0Dbv80o/4XVYf9A27/NKKKXsYdh+1n3Gj4z6 cJC40y73EAE7k6DOP5mmXPxi0u7tZrafS7t4ZkMbruUZUjBGQfSiij2MOwe1n3Mf/hOfCW7d/wAI 9d7vXzz/APFVcsviZ4d0+4jntdDuopY42iVg4J2sQSOTzyo60UUlh6a2RcsTWlpKTY1fiT4cQRqu h3YWK8a+RfN+UTtuJbGcdWY46ZOcZ5qO2+IfhezvLa7h0C5E9t5/ku0gbZ5z+ZKRknlm59ugwOKK KfsYdiPaz7i2vxF8MWT2TwaBdKbIzG2BkBERlbc5AJxknp6AkDAOKdqXxH8NauZDe6FdSeZay2bY lC5ilKl1+UjqUU568cHk0UUexh2D2s+5LN8UfD9zez3c+iXMs89t9kkZ2UgxZJ24zgAljnHXjOcD BN8UNAuNBbRJtHvX05rf7K0Rl5Me3bjdnd075z70UUexh2D2s+5Xu/iF4WvklSfw/clJbI2DqkgQ GA/wfKR6cHqMnBGTTrn4jeGbosZNBuhusn08+XII/wDR2xlPlIx0GD1HOCMmiij2MOwe1n3JYvid 4dg1OHUodCuI7uG1NnHIhUbYSVbZgHGMqMccduprQ/4XVYf9A27/ADSiij2MOwe1n3D/AIXVYf8A QNu/zSj/AIXVYf8AQNu/zSiij2MOwe1n3D/hdVh/0Dbv80o/4XVYf9A27/NKKKPYw7B7Wfcg/wCF vaTvlf8Asq73Svvc715O0Lnr6KPypjfFnRm66Rdn/ga/40UU/ZQ7B7WfcfF8XtJggjhj0q7WONAi DepwAMAdfSs28+IHha/unubnQbuSZ8bm87GcDA4DY6Ciil7GHYPaz7kH/CaeDv8AoXbv/wACD/8A FUf8Jp4O/wChdu//AAIP/wAVRRR7GHYPaz7h/wAJp4O/6F27/wDAg/8AxVH/AAmng7/oXbv/AMCD /wDFUUUexh2D2s+4f8Jp4O/6F27/APAg/wDxVH/CaeDv+hdu/wDwIP8A8VRRR7GHYPaz7h/wmng7 /oXbv/wIP/xVH/CaeDv+hdu//Ag//FUUUexh2D2s+4f8Jp4O/wChdu//AAIP/wAVR/wmng7/AKF2 7/8AAg//ABVFFHsYdg9rPuH/AAmng7/oXbv/AMCD/wDFUf8ACaeDv+hdu/8AwIP/AMVRRR7GHYPa z7h/wmng7/oXbv8A8CD/APFUf8Jp4O/6F27/APAg/wDxVFFHsYdg9rPuH/CaeDv+hdu//Ag//FUf 8Jp4O/6F27/8CD/8VRRR7GHYPaz7h/wmng7/AKF27/8AAg//ABVH/CaeDv8AoXbv/wACD/8AFUUU exh2D2s+4f8ACaeDv+hdu/8AwIP/AMVR/wAJp4O/6F27/wDAg/8AxVFFHsYdg9rPuH/CaeDv+hdu /wDwIP8A8VR/wmng7/oXbv8A8CD/APFUUUexh2D2s+4f8Jp4O/6F27/8CD/8VR/wmng7/oXbv/wI P/xVFFHsYdg9rPuH/CaeDv8AoXbv/wACD/8AFUf8Jp4O/wChdu//AAIP/wAVRRR7GHYPaz7h/wAJ p4O/6F27/wDAg/8AxVH/AAmng7/oXbv/AMCD/wDFUUUexh2D2s+4f8Jp4O/6F27/APAg/wDxVH/C aeDv+hdu/wDwIP8A8VRRR7GHYPaz7h/wmng7/oXbv/wIP/xVH/CaeDv+hdu//Ag//FUUUexh2D2s +4f8Jp4O/wChdu//AAIP/wAVR/wmng7/AKF27/8AAg//ABVFFHsYdg9rPuH/AAmng7/oXbv/AMCD /wDFUf8ACaeDv+hdu/8AwIP/AMVRRR7GHYPaz7h/wmng7/oXbv8A8CD/APFUf8Jp4O/6F27/APAg /wDxVFFHsYdg9rPuH/CaeDv+hdu//Ag//FUf8Jp4O/6F27/8CD/8VRRR7GHYPaz7h/wmng7/AKF2 7/8AAg//ABVH/CaeDv8AoXbv/wACD/8AFUUUexh2D2s+4f8ACaeDv+hdu/8AwIP/AMVR/wAJp4O/ 6F27/wDAg/8AxVFFHsYdg9rPuH/CaeDv+hdu/wDwIP8A8VR/wmng7/oXbv8A8CD/APFUUUexh2D2 s+4f8Jp4O/6F27/8CD/8VR/wmng7/oXbv/wIP/xVFFHsYdg9rPuH/CaeDv8AoXbv/wACD/8AFUf8 Jp4O/wChdu//AAIP/wAVRRR7GHYPaz7h/wAJp4O/6F27/wDAg/8AxVH/AAmng7/oXbv/AMCD/wDF UUUexh2D2s+4f8Jp4O/6F27/APAg/wDxVH/CaeDv+hdu/wDwIP8A8VRRR7GHYPaz7h/wmng7/oXb v/wIP/xVH/CaeDv+hdu//Ag//FUUUexh2D2s+4f8Jp4O/wChdu//AAIP/wAVR/wmng7/AKF27/8A Ag//ABVFFHsYdg9rPuH/AAmng7/oXbv/AMCD/wDFUf8ACaeDv+hdu/8AwIP/AMVRRR7GHYPaz7h/ wmng7/oXbv8A8CD/APFUf8Jp4O/6F27/APAg/wDxVFFHsYdg9rPuH/CaeDv+hdu//Ag//FUf8Jp4 O/6F27/8CD/8VRRR7GHYPaz7h/wmng7/AKF27/8AAg//ABVH/CaeDv8AoXbv/wACD/8AFUUUexh2 D2s+4f8ACaeDv+hdu/8AwIP/AMVR/wAJp4O/6F27/wDAg/8AxVFFHsYdg9rPuH/CaeDv+hdu/wDw IP8A8VR/wmng7/oXbv8A8CD/APFUUUexh2D2s+4f8Jp4O/6F27/8CD/8VR/wmng7/oXbv/wIP/xV FFHsYdg9rPuaNh8UdB0uBoLPRruKNm3keYG5wB3J9BUrfFrRnkeRtJvCzhVY715C7sd/9pvzooo9 jDsHtZ9xP+Fr6J/0CLz/AL+D/Gj/AIWvon/QIvP+/g/xoop+yh2F7WXcP+Fr6J/0CLz/AL+D/Gj/ AIWvon/QIvP+/g/xooo9lDsHtZdw/wCFr6J/0CLz/v4P8aP+Fr6J/wBAi8/7+D/Giij2UOwe1l3D /ha+if8AQIvP+/g/xo/4Wvon/QIvP+/g/wAaKKPZQ7B7WXcP+Fr6J/0CLz/v4P8AGj/ha+if9Ai8 /wC/g/xooo9lDsHtZdw/4Wvon/QIvP8Av4P8aP8Aha+if9Ai8/7+D/Giij2UOwe1l3D/AIWvon/Q IvP+/g/xo/4Wvon/AECLz/v4P8aKKPZQ7B7WXcP+Fr6J/wBAi8/7+D/Gj/ha+if9Ai8/7+D/ABoo o9lDsHtZdw/4Wvon/QIvP+/g/wAaP+Fr6J/0CLz/AL+D/Giij2UOwe1l3D/ha+if9Ai8/wC/g/xo /wCFr6J/0CLz/v4P8aKKPZQ7B7WXcP8Aha+if9Ai8/7+D/Gj/ha+if8AQIvP+/g/xooo9lDsHtZd w/4Wvon/AECLz/v4P8aP+Fr6J/0CLz/v4P8AGiij2UOwe1l3D/ha+if9Ai8/7+D/ABo/4Wvon/QI vP8Av4P8aKKPZQ7B7WXcP+Fr6J/0CLz/AL+D/GszX/iZo91oGqQw6XdxSXFsULlweBkjjPufzooo 9nFa2D2knof/2Q== --Boundary-00=_VMfjEvzRQWWdwSx-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: "No icon image or any other graphics found in this site may be use under an= y=20 circumstance, in any situation nor in any media without prior consent of th= e=20 author via email." I'm not a lawyer and I'm asking if we can use those crystal icons in our project without the permission od Everaldo Coelho. Benoit, did you ask some permission to use the crystal icon set?=20 Please, could you clear it? Regards, Stefano Palmeri =20=20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Just the 1.9.38 is the first one. >=20 >=20 > --=20 > Ciao. > Leo >=20 But I got fresh tar from sf at Amsterdam and now up and running. :) Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: * NEW: Show and Hide events are not sent anymore if they come from the window manager. This is experimental too! Now, the problem is that in a certain project the program to something when the hide event is raised. Before this change if a user clicked the minimized button, the hide event was raised and a certain actions could have been done. Now if a user clicks the minimize button, which event is raised?=20 Put a timer and check the state of the form every nanoseconds is not good and so... what? Am I the only one missing the hide event generated by a minimize button click? Regards, Stefano Palmeri From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: I choose components and then I select the=20 gb component (the same with others) and click on "About component". konqueror is unable to open the page. I attached the output of Gambas console.=20 It seems that konq find a "wild card" and modifies the URL. That's strange, because it doesn't with the help pages. Finally, in the source I set s$browser =3D "mozilla" and when I click "About component" I can see all info. Request: in next version could you set $BROWSER environment variable as first choise? If someone uses KDE, it doesn't mean he/she likes konqueror. Generally he/she likes $BROWSER. Best regards,=20 Stefano Palmeri --Boundary-00=_qabBFwBhXXaTTxA Content-Type: text/plain; charset="us-ascii"; name="console-output" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="console-output" qDrawShadePanel() Invalid parameters. kio (KSycoca): Trying to open ksycoca from /var/tmp/kdecache-stefano/ksycoca konqueror: KonqMisc::createNewWindow url=file:///usr/local/share/gambas2/help/help/comp/gb%3Fen konqueror: void KonqMisc::createBrowserWindowFromProfile() konqueror: path=/opt/kde/share/apps/konqueror/profiles/webbrowsing,filename=webbrowsing,url=file:///usr/local/share/gambas2/help/help/comp/gb%3Fen kio (KTrader): query for Browser/View : returning 30 offers libkonq: ## loaded: 467 entries. konqueror: KonqMainWindow::enableAllActions false kparts: found KParts Plugin : /opt/kde/share/apps/konqueror/kpartplugins/searchbar.rc kparts: load plugin searchbar kio (KTrader): query for KURIFilter/Plugin : returning 4 offers kurifilter (plugins): (29024) Keywords Engine: Loading config... kurifilter (plugins): (29024) Keyword Delimiter: : kurifilter (plugins): (29024) Default Search Engine: kurifilter (plugins): (29024) Web Shortcuts Enabled: true kurifilter (plugins): (29024) Verbose: false kurifilter (plugins): (29024) Keywords Engine: Loading config... kurifilter (plugins): (29024) Keyword Delimiter: : kurifilter (plugins): (29024) Default Search Engine: kurifilter (plugins): (29024) Web Shortcuts Enabled: true kurifilter (plugins): (29024) Verbose: false kparts: MainWindow::createGUI, part=(nil) kparts: found KParts Plugin : /opt/kde/share/apps/konqueror/kpartplugins/searchbar.rc konqueror: KonqViewManager::clear konqueror: Trying to create view for "KonqAboutPage" kio (KTrader): query for KonqAboutPage, KParts/ReadOnlyPart : returning 1 offers konqueror: Found requested service konq_aboutpage konqueror: Trying to open lib for requested service konq_aboutpage konqueror: KonqViewManager::setupView passiveMode=false konqueror: KonqView::switchView kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/akregator_konqfeedicon.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/autorefresh.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/crashesplugin.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/kget_plug_in.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/khtmlkttsd.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/khtmlsettingsplugin.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/minitoolsplugin.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/plugin_babelfish.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/plugin_domtreeviewer.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/plugin_rellinks.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/plugin_validators.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/plugin_webarchiver.rc kparts: found KParts Plugin : /opt/kde/share/apps/khtml/kpartplugins/uachangerplugin.rc kparts: load plugin konqfeedicon kparts: load plugin khtml_kget kparts: load plugin khtmlkttsdplugin konqueror: KHTMLPLuginKTTSD::KHTMLPluginKTTSD: KTrader did not find KTTSD. kparts: load plugin khtmlsettingsplugin kparts: load plugin Minitools kparts: load plugin babelfish kparts: load plugin webarchiver kparts: load plugin UserAgentChanger konqueror: KonqMainWindow::insertChildView 0x8262d40 konqueror: KonqMainWindow::enableAllActions true konqueror: KonqMainWindow::viewCountChanged kparts: 0x8112508 emitting activePartChanged 0x82633b8 konqueror: KonqMainWindow::slotPartActivated 0x82633b8 khtml konqueror: New current view 0x8262d40 kparts: MainWindow::createGUI, part=0x82633b8 KonqAboutPage konqueror: KonqMainWindow::setLocationBarURL: url = konqueror: KonqMainWindow::openURL : url = 'file:///usr/local/share/gambas2/help/help/comp/gb%3Fen' serviceType='' view=0x8262d40 konqueror: Found wildcard. nameFilter=gb?en New url=file:///usr/local/share/gambas2/help/help/comp/ konqueror: trying openView for file:///usr/local/share/gambas2/help/help/comp/ (serviceType inode/directory) konqueror: KonqMainWindow::openView inode/directory file:///usr/local/share/gambas2/help/help/comp/ 0x8262d40 req:[nameFilter=gb?en forceAutoEmbed] konqueror: changeViewMode: serviceType is inode/directory serviceName is konq_treeview current service name is konq_aboutpage konqueror: Switching view modes... konqueror: Trying to create view for "inode/directory" kio (KTrader): query for inode/directory, Application : returning 0 offers kio (KTrader): query for inode/directory, KParts/ReadOnlyPart : returning 10 offers konqueror: Found requested service konq_treeview konqueror: Trying to open lib for requested service konq_treeview konqueror: KonqView::switchView libkonq: The icon theme handles the sizes:(16,22,32,48,64,128) libkonq: Using 7 icon sizes. konqueror: Creating KonqTreeViewWidget kio (KDirLister): +KDirLister kio (KDirListerCache): +KDirListerCache kio (KDirWatch): Can't use FAM (fam daemon not running?) kio (KDirWatch): Available methods: Stat konqueror: +KonqBaseListViewWidget konqueror: +KonqTreeViewWidget kparts: found KParts Plugin : /opt/kde/share/apps/konqlistview/kpartplugins/dirfilterplugin.rc kparts: found KParts Plugin : /opt/kde/share/apps/konqlistview/kpartplugins/kimgalleryplugin.rc kparts: found KParts Plugin : /opt/kde/share/apps/konqlistview/kpartplugins/kremoteencodingplugin.rc kparts: found KParts Plugin : /opt/kde/share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc kparts: load plugin DirFilter kparts: load plugin kparts: load plugin kparts: load plugin konqueror: KonqMainWindow::slotPartChanged konqueror: KonqMainWindow::setLocationBarURL: url = kparts: 0x8112508 emitting activePartChanged 0x8326fc8 konqueror: KonqMainWindow::slotPartActivated 0x8326fc8 konqlistview konqueror: New current view 0x8262d40 kparts: MainWindow::createGUI, part=0x8326fc8 KonqListView kparts: deactivating GUI for 0x82633b8 KonqAboutPage konqueror: KonqMainWindow::setLocationBarURL: url = kparts: Part::~Part 0x82633b8 kparts: deleting widget [KHTMLView pointer (0x82bd998) to widget view widget, geometry=700x363+0+0] view widget konqueror: KonqView::switchView X-KDE-BrowserView-HierarchicalView -> setHierarchicalView konqueror: KonqView::openURL url=file:///usr/local/share/gambas2/help/help/comp/ locationBarURL=/usr/local/share/gambas2/help/help/comp/gb?en konqueror: KonqMainWindow::setLocationBarURL: url = /usr/local/share/gambas2/help/help/comp/gb?en konqueror: KonqMainWindow::setCaption(/usr/local/share/gambas2/help/help/comp/) konqueror: [virtual bool KonqBaseListViewWidget::openURL(const KURL&)] protocol: file url: /usr/local/share/gambas2/help/help/comp/ konqueror: [void KonqBaseListViewWidget::readProtocolConfig(const KURL&)] protocol: file kio (KDirLister): [virtual bool KDirLister::openURL(const KURL&, bool, bool)] file:///usr/local/share/gambas2/help/help/comp/ keep=false reload=false kio (KDirListerCache): [void KDirListerCache::listDir(KDirLister*, const KURL&, bool, bool)] 0x8339d18 url=file:///usr/local/share/gambas2/help/help/comp keep=false reload=false kio (KDirListerCache): [void KDirListerCache::stop(KDirLister*)] lister: 0x8339d18 kio (KDirListerCache): [void KDirListerCache::forgetDirs(KDirLister*)] 0x8339d18 konqueror: [virtual void KonqTreeViewWidget::slotClear()] kio (KDirListerCache): listDir: Entry not in cache or reloaded: file:///usr/local/share/gambas2/help/help/comp kio (KDirWatch): Added Dir /usr/local/share/gambas2/help/help/comp [KDirWatch-1] kio (KDirWatch): Global Poll Freq is now 500 msec kio (KDirWatch): Started Polling Timer, freq 500 kio (KDirWatch): Setup Stat (freq 500) for /usr/local/share/gambas2/help/help/comp libkonq: ## addToHistory: file:///usr/local/share/gambas2/help/help/comp/ Typed URL: /usr/local/share/gambas2/help/help/comp/gb?en, Title: konqueror: KonqMainWindow::openView ok=true bOthersFollowed=false returning true kio (KDirListerCache): [void KDirListerCache::slotEntries(KIO::Job*, const KIO::UDSEntryList&)] new entries for file:///usr/local/share/gambas2/help/help/comp kio: KSambaShare: Could not found smb.conf! kio: KNFSShare: Could not found exports file! kio (KDirListerCache): [void KDirListerCache::slotResult(KIO::Job*)] finished listing file:///usr/local/share/gambas2/help/help/comp konqueror: [virtual void KonqBaseListViewWidget::setComplete()] Update Contents Pos: true libkonq: ## addToHistory: file:///usr/local/share/gambas2/help/help/comp/ Typed URL: , Title: comp --Boundary-00=_qabBFwBhXXaTTxA-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: > > The program stopped at Windo.move and Raise an error (Got Signal 11?). > > Is there any change for this command or this is a gambas bug? > > The Last version I use 1.9.32 (Quantum leap, eh). Currently I will try = to > > use 1.9.41 (Least version I can download),may be I can report it if I > > have some time. > Please upgrade to the newer release possible, and tell me if you have the > problem yet. > -- > Benoit Minisini I already try 1.9.41 version, the error that raise is different, it mention= =20 about can not load TimeBox class.Because I not use any class at gb.form=20 component, I disable it.But when I forgot to disable gb.form.mdi gambas loc= k=20 up. After I kill it and restart again, I disable gb.form.mdi component and = no=20 error happen. Because I am curious about it, I try to enable gb.form again and I try to r= un=20 my program again, and still no error happen. After the error disappear, I try to back to 1.9.44 version that previously= =20 report an error.And magically the error gone.I don't know what happen, may = be=20 because of the "quantum-leap" version change. Just for your information. Another minor problem that I have: I try to delete one of my tab on the TabStrip, but because there are still= =20 many control on it I must delete it first.But I failed to delete with this= =20 code: DIM child AS Object FOR EACH child ON tab.Children child.delete NEXT Currently I must reparent the children to tab.parent before I successfully= =20 delete it.The control in my tab is Panel, Button and Tableview. Regards, L.Jumadi From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: tive SmtpClient.Alternative (gb.net.smtp) PROPERTY Alternative AS Boolean Returns or sets if mail attachments are actually different alternatives of= the same data.=20 For example, a mail encoded in HTML, in UTF-8, or only in ASCII.=20 By default, this property is FALSE. You must define it before using the Ad= d method. What happens if you try when this property is true? pdf files are more like the UTF-8 (8bit) instead of ASCII (7bit) Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Context here is the TAG (Context) and the value is in TAG[1] (Len(Y)) Looks to me the Eval line must be then Rstr =3D Eval(tag[1],Tag) I'm afraid you must put the value of Mglobal.U_nom into Tag[1] instead the = variable name. Or with luck next can do the job. DIM Context AS New Collection Context["X"] =3D Tag[0] 'li Context["Y"] =3D Tag[1] 'value of Mglobal.U_nom or "Mglobal.U_nom" PRINT Eval("Len(Y)", Context) Just my 2 cents Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: desktop" disabled and the IDE do not start and returns dis error: epileg at ...1008...:~$ gambas2 ERROR: #27: Cannot load component 'gb.desktop': cannot find library file epileg at ...1008...:~$ What can I do? thanks, Ep=C3=ADleg. P.D. Before the SVN [858] version, the "gb.qte" already appeared disabled t= oo, so if somebody can help me to solve it... From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: m, isn't a solution to use the currency thousand separator in numbers when = this info is missing? Regards, Ep=C3=ADleg. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Stop worrying about how you are writing announcements of the latest version= .=20=20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: =20 front (without spending money). I realize you want Gambas to be the next h= ot=20 language but I doubt that's going to happen. Here is what I think will hol= d=20 Gambas back. 1.Not a Cross platform solution. 2.No web=20 Oh I know that QT is now cross platform. So Gambas can solve the problem i= n=20 the future. But what about the web? First let me say desktop applications are not going away soon (if ever). B= ut=20 that's not what has been hot in the industry. Languages like Ruby are hot= =20 right now because of Ruby on Rails =E2=80=93 web apps. Personally I don't = think much=20 of Ruby. But it's hard to deny that there are lots of developers=20 participating in =E2=80=9CRuby on Rails=E2=80=9D if the list and forum traf= fic means=20 anything. I receive a hundred messages daily from the Ruby list and forum.= =20=20 Of course there is the Ajax thing and Flex along with Air that claim to=20 provide a rich web interface as good as a desktop. So how does Gambas fit in when it comes to web apps? It doesn't really. So capitalize on your strengths. In the windows world VB6 is very strong.= =20=20 And still has a very large following world wide. So instead of saying you= =20 are not VB6 say you are better than VB6 with added features. Yes I know th= at=20 you can't move a VB6 project to Gambas with a push of a button. So what.= =20=20 The coding is very close. Go and evangelize the strengths of Gambas to the= =20 VB6 guys. Next stop calling other languages =E2=80=9Cnerdie=E2=80=9D. Python is no m= ore nerdie than=20 Basic. All that does is cause others to look at the Gambas list with=20 suspicion.=20=20 Last keep your expectation within reason. Basic is 30-40 years old. So th= e=20 idea of basic is not new but what can be done with the new basic (Gambas).= =20=20 That is a strength BTW. So write that app that all distro's want to includ= e=20 and show the world that Basic is not basic. --=20 John Fabiani From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: It's better to grab it from from 2.0 branch instead of the trunk, because t= he=20 trunk can be broke until work is finished on the 64 bit branch. It's better= =20 to grab it from : svn co https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 In the 2.0 branch there is only bugfixes, and (i hope) it is granted to wor= k. Regards, --nextPart1762995.L4xxWyVLn3 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQBHixSv0Fv9OK8ZbscRAoLsAJoChOq7arVLzGOIx9wdTbWSt0zSngCePpjh u0SqDdUnJuo5eDBHWLytF4w= =BVhL -----END PGP SIGNATURE----- --nextPart1762995.L4xxWyVLn3-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: > mysql> show databases; > +--------------------+ > | Database =A0 =A0 =A0 =A0 =A0 | > +--------------------+ > | information_schema | > | mysql =A0 =A0 =A0 =A0 =A0 =A0 =A0| > | test =A0 =A0 =A0 =A0 =A0 =A0 =A0 | > | wikidb =A0 =A0 =A0 =A0 =A0 =A0 | > +--------------------+ > 4 rows in set (0.00 sec) >=20 > mysql> > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > but I get error when run from gambas >=20 > This is the code I use from inside gambas > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > PRIVATE $hConn AS Connection >=20 > PUBLIC SUB btnConnect_Click() >=20 > =A0 =A0DIM sName AS String >=20 > =A0 =A0TRY $hConn.Close > =A0 =A0'$hConn =3D NEW Connection > =A0 =A0WITH $hConn > =A0 =A0 =A0.Type =3D "mysql" > =A0 =A0 =A0.Host =3D "localhost" > =A0 =A0 =A0.Login =3D "zano" > =A0 =A0 =A0.Password =3D "mypassword" > =A0 =A0 =A0.Port =3D "3306" > =A0 =A0 =A0.Name =3D "" > =A0 =A0END WITH >=20 > =A0 =A0$hConn.Name =3D "zano" > =A0 =A0$hConn.Open > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Why do you set $hConn.Name =3D "zano" if the database name should be=20 'wikidb' where you talked about in previous posts?? You are mixing two problems.=20 1) connection to the database server your start post:2008-02-16 22:07 > Well... the problem is that I cannot connect to mysql since I get a=20 > socket error. Gambas looks for the socket in /tmp while the working=20 > socket is /var/run/mysql, the default [1] 2008-02-18 17:34 > This is what I get when connecting with MySql. > As you can see, there is a wikidb which I use for personal purposes.=20 2008-02-18 19:14 > What I've noticed is that it doesn't care of psw, username. It signals=20 > error with "mysql" and "localhost" 2008-02-19 11:53 > > You should use a mysql admin program, like phpadmin or mysqladmin > > and add a user 'Zano' with or without password to the mysql server. > > You must do it as mysql root user here.!!! > > > Sorry, but it doen't work. > I've created the user zano with ALL priviledges, I can run it from termin= al Here the reason I told (2008-02-20 16:28) about $hConn.Name =3D "zano" !!!= =20 2008-02-19 16:08 (answer by Benoit) > > While writing this mail, I'm in question. > > I run the the modified example "database" in gambas package, it shows a > > form, a click on connect and I get the error. > > Is it possible there is a problem in the form or something associated > > with it? > > > I think it is a problem in some mysql configuration file, because, to con= nect=20 > to the database, Gambas does nothing more than using the property of the= =20 > Connection object.=20 > I cannot tell you more, except that nobody else have such a problem with = the=20 > Database example, and I never got it during the development, with many=20 > different mysql versions. 2) data problems when connected. > Hi,=20 > I donnot get it (again ;-) ) I told (2008-02-20 16:28) about wrong $hConn.Name =3D "zano" ??? > I do : > =A0 =A0 =A0 IF Res.Fields[CFields[i]].Type =3D db.Date THEN > > where Res is a valid result set and CFields[i] contains the name of the f= ield.=20 > If I select "Res.Fields[CFields[i]].Type" in the debugger I get a 9, wich= is correct ! WRONG (from gambas help) DB.Date (gb.db) Syntax CONST Date AS Integer =3D 8 DB.String (gb.db) Syntax CONST String AS Integer =3D 9 > When I run the program it stops on this line with : 'Not an Object' > However, when i look into "Res.Fields[CFields[i]]" the object is there > with all items filled corectly (Name, Type, ...) How come "Res.Fields[CFields[i]]" what a single field determined by name=20 from CFields[i] contains all items filled corectly (Name, Type, ...) > What do i do wrong ? Telling the connection and access works and provided information was useful= l ? The exact gambas version in use. Providing wrong code, the connection in previous posts, without correction = what is done. Are the names in CFields array of the same case as in the database, just in= case? Did you create the database with the gambas-database-manager? For the remaining not much as we also do ourselfs too :=3D) Try following in the (sub) routine DIM tmptype as integer DIM tmpdata as Date tmptype =3D Res.Fields[CFields[i]].Type tmpdata =3D Res.Fields[CFields[i]] IF tmptype =3D db.Date THEN Where does the error occur exact? Ron From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: FMain.variabile.... But nither from FMain and from FCluster can write variabes in FrmCW.somevariable. It means that the class of FMain can not send values to the variables of=20 other classes , nither a class (not FMain) can send values to other classes which are not FMain ...Why this ? It seems a big limitation. For instance...in FMain the instruction: IF cw_on THEN FrmCW.CWCall.text =3D Call.Text Simply does nothing...nither gives error. In the class of FCluster=20 FMain.Call.Text =3D GridSpot[GridSpot.row, 0].Text ' <-- this is ok IF FMain.cw_on THEN FrmCW.CWCall.text =3D GridSpot[GridSpot.row, 0].Text = ' <--=20=20 The first instruction works, but the second does nothing. Why ? Is there some trick or workaround ? For the same reason, I guess, it does not even work the example in suggest= ion=20 #11. the instruction=20 hSuperControl.Move(8, 8, 128, 64) if given into the FMain class gives error..."Not enough parameters" From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: Equally from a class not-FMain I can not call SUBs of not-FMain =20 Thanks for any help Pino pinozollo at ...626... From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: t=20 be available if I compile and install the 2.4.1 . what did I wrong ? Thanks Pino From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: FQSOList.ButtonLast_Click() but I get the error: " not enough arguments " Which arguments are needed ?? Any idea ? Regards Pino From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: run 'valgrind... gbx2 -p' inside the IDE directory.=20 But if the crash comes from your project, you must run valgrind inside the= =20 project directory.=20 And if the crash comes from your project, but only while debugging it, run= =20 valgrind inside the IDE project directory, but add the=20 option '--trace-children=3Dyes' to let valgrind follow both the IDE and you= r=20 project! Tell me if I was not clear. Regards, --=20 Benoit Minisini From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: ------------------------------------------------------------ GridView1[1,0].Picture =3D Picture["image.png"] ------------------------------------------------------------ Ciao, Stefano From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: So=20 I'm a little bit more forced to inhale the (for me) new concepts of gambas= =20 and can use it's full power...some day! ;-) > or, even better, > > select sAction > case "Item1" > Item1() > > case "Item2" > Item2() > > ... > > case else > print "Unknown command" > end select That's the way it works!!!=20 Thank you very much. Greetz Stevie From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: ---------------------------------------------------------------------------= ---------------------- To get a snapshot of the 2.x development version, do: $ mkdir 2.0 $ svn checkout=20 https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 $ cd 2.0 $ ./reconf-all Do not forget to install automake and autoconf, otherwise the ./reconf-all= =20 script will not work.=20 ---------------------------------------------------------------------------= ----------------------- The svn version is the current version Benoit is working on. It adds fixes or changes day by day and then it will become probably 2.9.1. After ./reconf-all, then you have to run ./configure, make and make install. If you want to use this version, uninstall previous Gambas. Bye, Stefano > Stefano Palmeri wrote: > > Il gioved=C3=AC 13 novembre 2008 21:22:09 moon_walker ha scritto: > > > > I had the same problem on slackware. Benoit fixed it in svn version. > > > > Bye, > > > > Stefano > > > > -----------------------------------------------------------------------= -- > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > challenge > > Build the coolest Linux based applications with Moblin SDK & win great > > prizes > > Grand prize is a trip for two to an Open Source event anywhere in the > > world > > http://moblin-contest.org/redirect.php?banner_id=3D100&url=3D/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: and/or at the same ident level. The other is walking straigt from=20 top to bottom parsing every node in the treeview and reading the key tells the ident/level it is. Best regards, Ron_1st --=20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: The solution was write the table first and change the field type. For the last line I would say it try to create the index "glcoa_sort" ON gl= coa and that the table glcoa does not exist.=20 suggest: a) =A0 =A0 .Fields.Add("status", gb.String, 1) =A0 =A0 .PrimaryKey =3D ["account"] .Update '<-- this should write the table before tha add in= dexes .Indexes.Add("glcoa_account", "account", TRUE) =A0 =A0 .Indexes.Add("glcoa_sort", "glsort", TRUE) =A0 =A0 .Update =A0 =A0END WITH or b) .Fields.Add("status", gb.String, 1) .PrimaryKey =3D ["account"] .Update END WITH ' here the table must have been written by the .update and the END WIDTH ' maybe you must reopen the table again here =A0 WITH hTable .Indexes.Add("glcoa_account", "account", TRUE) .Indexes.Add("glcoa_sort", "glsort", TRUE) .Update '<-- this should write the table before tha add in= des END WITH It looks stupid but it is the best idea I have ATM. Best regards, Ron_1st --=20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: No protocol specified (gb.form.gambas:2318): Gtk-WARNING **: cannot open display: :0.0 Question Gtk ?? gtk-dev is all installed and kubuntu uses QT. Best regards, Ron_1st --=20 A: Delete the text you reply on. Q: What to do to get my post on top? A: Because it messes up the order in which people normally read text.=20 Q: Why is top-posting such a bad thing?=20 A: Top-posting.=20 Q: What is the most annoying thing in e-mail?=20 =20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: related and the major difference is USB or PS2. Second if the keyboard is the same you can have diffent kmaps in the xkeyboard settings. Second it is importand to know what the programm is suppose to do. If it copies files from one to other place and do not ask user=20 keyboard input then the reason is differnt then when it is a=20 text edit program. Once a guy did ask me why his car (opel) was making a peep sound. I could only say my car (opel same model/year/version) did not do it. After asking _WHEN_ makes that sound he told it was when he did going to left or right and the car is the same as yours for 100%. Well after going to his home, a 8 hours travel, and see his car it was very= clear.=20 His car was not the same anymore as mine, the tires where replaced=20 be wider ones and when turning left or right those touched the cover. After paying me the travel expence I could go home :) Now you can understand that nobody can give you the 100% solution with the only 1 given error message. > Please tell me the solution immediately... I do assume you mean for "solution"->"some hint to look for" and for "immediately"->"as soon as posible"=20 It sound now more as a command as it is written and that is what the viewers see as first thing. They think in mind "bey bey, do it yourself". English is for me not the native language, same as it is not for you when you are from indonesia. The best tip I can give to get good result is the one I have given on top. (Is is also a good test case to make sure your program _is_ tranferable=20 to other computers before a mass deploy to others.) The best situation would be your package could do this job from source. Not imposible, virtualbox does it for one of the drivers but ATM out of scope for Gambas. Best regards, Ron_1st --=20 =20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: In the configure there is/was no mention about qt-mt but in the log from 'make' it occurs on some parts related to gb.gt.xxxx I did give you those logs also the ones from make install with the -v flag for the gbi calls. I commented even the place in that special log where the gbi -v was aborted. Never got a hint from that action you requested me to do with -v flag. It may be not exact the same problem but strong related in my view by reading my log files line by line. The compare for diffs between kubuntu8.04 - kubuntu-8.10 and your mandrake was interesting but not effective. However we din never look to where the diffs where for the qt libs and that is interesting to. kubuntu 8.04 based on qt3 kde3 kubuntu 8.10 based on qt4 kde4 I did see in the 'make' log references for gcc for lib paths to lib/qt4 Attached the result for 'locate qt3' (removed the /user/share/doc lines)=20 So I did give up, live goes on for you and me. ron at ...1311...:~$ locate libqt-mt pclinux-2007 mounted at /mnt/sda2 /mnt/sda2/usr/lib/qt3/lib/libqt-mt.la /mnt/sda2/usr/lib/qt3/lib/libqt-mt.prl /mnt/sda2/usr/lib/qt3/lib/libqt-mt.so.3 /mnt/sda2/usr/lib/qt3/lib/libqt-mt.so.3.3 /mnt/sda2/usr/lib/qt3/lib/libqt-mt.so.3.3.8 kubuntu-8.04 /usr/lib/libqt-mt.la /usr/lib/libqt-mt.prl /usr/lib/libqt-mt.so /usr/lib/libqt-mt.so.3 /usr/lib/libqt-mt.so.3.3 /usr/lib/libqt-mt.so.3.3.8 /usr/share/qt3/lib/libqt-mt.la /usr/share/qt3/lib/libqt-mt.prl /usr/share/qt3/lib/libqt-mt.so /usr/share/qt3/lib/libqt-mt.so.3 /usr/share/qt3/lib/libqt-mt.so.3.3 Best regards, Ron_1st --=20 --Boundary-00=_8B+mJQCV6q+IijB Content-Type: text/plain; charset="iso 8859-15"; name="libqt-places.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="libqt-places.txt" /usr/lib/libqt-mt.la /usr/lib/libqt-mt.prl /usr/lib/libqt-mt.so /usr/lib/libqt-mt.so.3 /usr/lib/libqt-mt.so.3.3 /usr/lib/libqt-mt.so.3.3.8 /usr/lib/libqthreads.so.12 /usr/lib/libqthreads.so.12.3.1 /usr/lib/libqtmcop.a /usr/lib/libqtmcop.la /usr/lib/libqtmcop.so /usr/lib/libqtmcop.so.1 /usr/lib/libqtmcop.so.1.0.0 /usr/lib/gtk-2.0/2.10.0/engines/libqtengine.so /usr/lib/qt4/plugins/accessible/libqtaccessiblecompatwidgets.so /usr/lib/qt4/plugins/accessible/libqtaccessiblewidgets.so /usr/lib/qt4/plugins/codecs/libqtwcodecs.so /usr/lib/qt4/plugins/designer/libqt3supportwidgets.so /usr/lib/qt4/plugins/imageformats/libqtiff.so /usr/lib/qt4/plugins/script/libqtscriptdbus.so /usr/share/lintian/overrides/libqt4-assistant /usr/share/lintian/overrides/libqt4-dbus /usr/share/lintian/overrides/libqt4-designer /usr/share/lintian/overrides/libqt4-dev /usr/share/lintian/overrides/libqt4-help /usr/share/lintian/overrides/libqt4-network /usr/share/lintian/overrides/libqt4-opengl /usr/share/lintian/overrides/libqt4-qt3support /usr/share/lintian/overrides/libqt4-script /usr/share/lintian/overrides/libqt4-sql /usr/share/lintian/overrides/libqt4-svg /usr/share/lintian/overrides/libqt4-test /usr/share/lintian/overrides/libqt4-webkit /usr/share/lintian/overrides/libqt4-xml /usr/share/lintian/overrides/libqt4-xmlpatterns /usr/share/lintian/overrides/libqtcore4 /usr/share/lintian/overrides/libqtgui4 /usr/share/qt3/lib/libqt-mt.la /usr/share/qt3/lib/libqt-mt.prl /usr/share/qt3/lib/libqt-mt.so /usr/share/qt3/lib/libqt-mt.so.3 /usr/share/qt3/lib/libqt-mt.so.3.3 /var/cache/apt/archives/libqt3-compat-headers_3%3a3.3.8-b-0ubuntu3_i386.deb /var/cache/apt/archives/libqt3-headers_3%3a3.3.8-b-0ubuntu3_i386.deb /var/cache/apt/archives/libqt3-mt-dev_3%3a3.3.8-b-0ubuntu3_i386.deb /var/cache/apt/archives/libqt4-dev_4.4.0-1ubuntu5~hardy1_i386.deb /var/cache/apt/archives/libqt4-help_4.4.0-1ubuntu5~hardy1_i386.deb /var/cache/apt/archives/libqt4-webkit_4.4.0-1ubuntu5~hardy1_i386.deb /var/cache/apt/archives/libqt4-xmlpatterns_4.4.0-1ubuntu5~hardy1_i386.deb /var/lib/dpkg/info/libqt-perl.list /var/lib/dpkg/info/libqt-perl.md5sums /var/lib/dpkg/info/libqt3-compat-headers.list /var/lib/dpkg/info/libqt3-compat-headers.md5sums /var/lib/dpkg/info/libqt3-headers.list /var/lib/dpkg/info/libqt3-headers.md5sums /var/lib/dpkg/info/libqt3-mt-dev.list /var/lib/dpkg/info/libqt3-mt-dev.md5sums /var/lib/dpkg/info/libqt3-mt.conffiles /var/lib/dpkg/info/libqt3-mt.list /var/lib/dpkg/info/libqt3-mt.md5sums /var/lib/dpkg/info/libqt3-mt.postinst /var/lib/dpkg/info/libqt3-mt.postrm /var/lib/dpkg/info/libqt3-mt.shlibs /var/lib/dpkg/info/libqt4-assistant.list /var/lib/dpkg/info/libqt4-assistant.md5sums /var/lib/dpkg/info/libqt4-assistant.postinst /var/lib/dpkg/info/libqt4-assistant.postrm /var/lib/dpkg/info/libqt4-assistant.shlibs /var/lib/dpkg/info/libqt4-core.list /var/lib/dpkg/info/libqt4-core.md5sums /var/lib/dpkg/info/libqt4-dbus.list /var/lib/dpkg/info/libqt4-dbus.md5sums /var/lib/dpkg/info/libqt4-dbus.postinst /var/lib/dpkg/info/libqt4-dbus.postrm /var/lib/dpkg/info/libqt4-dbus.shlibs /var/lib/dpkg/info/libqt4-designer.list /var/lib/dpkg/info/libqt4-designer.md5sums /var/lib/dpkg/info/libqt4-designer.postinst /var/lib/dpkg/info/libqt4-designer.postrm /var/lib/dpkg/info/libqt4-designer.shlibs /var/lib/dpkg/info/libqt4-dev.list /var/lib/dpkg/info/libqt4-dev.md5sums /var/lib/dpkg/info/libqt4-dev.postinst /var/lib/dpkg/info/libqt4-dev.prerm /var/lib/dpkg/info/libqt4-gui.list /var/lib/dpkg/info/libqt4-gui.md5sums /var/lib/dpkg/info/libqt4-help.list /var/lib/dpkg/info/libqt4-help.md5sums /var/lib/dpkg/info/libqt4-help.postinst /var/lib/dpkg/info/libqt4-help.postrm /var/lib/dpkg/info/libqt4-help.shlibs /var/lib/dpkg/info/libqt4-network.list /var/lib/dpkg/info/libqt4-network.md5sums /var/lib/dpkg/info/libqt4-network.postinst /var/lib/dpkg/info/libqt4-network.postrm /var/lib/dpkg/info/libqt4-network.shlibs /var/lib/dpkg/info/libqt4-opengl.list /var/lib/dpkg/info/libqt4-opengl.md5sums /var/lib/dpkg/info/libqt4-opengl.postinst /var/lib/dpkg/info/libqt4-opengl.postrm /var/lib/dpkg/info/libqt4-opengl.shlibs /var/lib/dpkg/info/libqt4-qt3support.list /var/lib/dpkg/info/libqt4-qt3support.md5sums /var/lib/dpkg/info/libqt4-qt3support.postinst /var/lib/dpkg/info/libqt4-qt3support.postrm /var/lib/dpkg/info/libqt4-qt3support.shlibs /var/lib/dpkg/info/libqt4-script.list /var/lib/dpkg/info/libqt4-script.md5sums /var/lib/dpkg/info/libqt4-script.postinst /var/lib/dpkg/info/libqt4-script.postrm /var/lib/dpkg/info/libqt4-script.shlibs /var/lib/dpkg/info/libqt4-sql.list /var/lib/dpkg/info/libqt4-sql.md5sums /var/lib/dpkg/info/libqt4-sql.postinst /var/lib/dpkg/info/libqt4-sql.postrm /var/lib/dpkg/info/libqt4-sql.shlibs /var/lib/dpkg/info/libqt4-svg.list /var/lib/dpkg/info/libqt4-svg.md5sums /var/lib/dpkg/info/libqt4-svg.postinst /var/lib/dpkg/info/libqt4-svg.postrm /var/lib/dpkg/info/libqt4-svg.shlibs /var/lib/dpkg/info/libqt4-test.list /var/lib/dpkg/info/libqt4-test.md5sums /var/lib/dpkg/info/libqt4-test.postinst /var/lib/dpkg/info/libqt4-test.postrm /var/lib/dpkg/info/libqt4-test.shlibs /var/lib/dpkg/info/libqt4-webkit.list /var/lib/dpkg/info/libqt4-webkit.md5sums /var/lib/dpkg/info/libqt4-webkit.postinst /var/lib/dpkg/info/libqt4-webkit.postrm /var/lib/dpkg/info/libqt4-webkit.shlibs /var/lib/dpkg/info/libqt4-xml.list /var/lib/dpkg/info/libqt4-xml.md5sums /var/lib/dpkg/info/libqt4-xml.postinst /var/lib/dpkg/info/libqt4-xml.postrm /var/lib/dpkg/info/libqt4-xml.shlibs /var/lib/dpkg/info/libqt4-xmlpatterns.list /var/lib/dpkg/info/libqt4-xmlpatterns.md5sums /var/lib/dpkg/info/libqt4-xmlpatterns.postinst /var/lib/dpkg/info/libqt4-xmlpatterns.postrm /var/lib/dpkg/info/libqt4-xmlpatterns.shlibs /var/lib/dpkg/info/libqtcore4.list /var/lib/dpkg/info/libqtcore4.md5sums /var/lib/dpkg/info/libqtcore4.postinst /var/lib/dpkg/info/libqtcore4.postrm /var/lib/dpkg/info/libqtcore4.shlibs /var/lib/dpkg/info/libqtgui4.list /var/lib/dpkg/info/libqtgui4.md5sums /var/lib/dpkg/info/libqtgui4.postinst /var/lib/dpkg/info/libqtgui4.postrm /var/lib/dpkg/info/libqtgui4.shlibs /var/lib/dpkg/info/libqthreads-12.list /var/lib/dpkg/info/libqthreads-12.md5sums /var/lib/dpkg/info/libqthreads-12.postinst /var/lib/dpkg/info/libqthreads-12.postrm /var/lib/dpkg/info/libqthreads-12.shlibs --Boundary-00=_8B+mJQCV6q+IijB Content-Type: text/plain; charset="iso 8859-15"; name="kde3places.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="kde3places.txt" /etc/kde3 /etc/kde3/**** /usr/lib/kde3/******.la /usr/lib/kde3/******.so /usr/lib/kde3/kate.la /usr/lib/kde3/kate.so /usr/lib/kde3/kcm_*****.la /usr/lib/kde3/kcm_*****.so /usr/lib/kde4/lib/libkde3support.so.4 /usr/lib/kde4/lib/libkde3support.so.4.0.4 /usr/share/cmake-2.6/Modules/kde3init_dummy.cpp.in /usr/share/cmake-2.6/Modules/kde3uic.cmake /var/lib/dpkg/info/kdebase-bin-kde3.list /var/lib/dpkg/info/kdebase-bin-kde3.md5sums /var/lib/dpkg/info/python-kde3.list /var/lib/dpkg/info/python-kde3.md5sums /var/lib/dpkg/info/python-kde3.postinst /var/lib/dpkg/info/python-kde3.preinst /var/lib/dpkg/info/python-kde3.prerm --Boundary-00=_8B+mJQCV6q+IijB-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: =C2=AB This enum describes various attributes that are configurable through= =20 QWebSettings. ... QWebSettings::JavaEnabled 2 Enables or disables Java applets. Currently J= ava=20 applets are not supported. =C2=BB Maybe in Qt 4.6 at the end of the year ? Obviously QtWebKit is not finished... --=20 Beno=C3=AEt From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: FUNCTION Create ( Table AS String ) AS Result postgres. I've a valid connection object, if I inspect it it gives sees I've got 321= =20 tables in my connection as (.connectiontables) However, these are scattered across 25 Schema's. This dosn't work: newPicture =3D conn.Create("contacts.images") where this is schema (contacts) and tablename(images). This function doesn't seem to be able to cope with this way of describing a= =20 table. But this does if I create the table in the public schema: Dim newPicture As result newPicture =3D conn.Create("temp_images") and I can write an image direct to the newPicture result and do a newPicture.Update() and it saves it to the database. Anyone know what I'm doing wrong. Regards Richard From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: FUNCTION Create ( Table AS String ) AS Result postgres. I've a valid connection object, if I inspect it it gives sees I've got 321= =20 tables in my connection as (.connectiontables) However, these are scattered across 25 Schema's. This dosn't work: newPicture =3D conn.Create("contacts.images") where this is schema (contacts) and tablename(images). This function doesn't seem to be able to cope with this way of describing a= =20 table. But this does if I create the table in the public schema: Dim newPicture As result newPicture =3D conn.Create("temp_images") and I can write an image direct to the newPicture result and do a newPicture.Update() and it saves it to the database. Anyone know what I'm doing wrong. Regards Richard From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: FUNCTION Create ( Table AS String ) AS Result postgres. I've a valid connection object, if I inspect it it gives sees I've got 321= =20 tables in my connection as (.connectiontables) However, these are scattered across 25 Schema's. This dosn't work: newPicture =3D conn.Create("contacts.images") where this is schema (contacts) and tablename(images). This function doesn't seem to be able to cope with this way of describing a= =20 table. But this does if I create the table in the public schema: Dim newPicture As result newPicture =3D conn.Create("temp_images") and I can write an image direct to the newPicture result and do a newPicture.Update() and it saves it to the database. Anyone know what I'm doing wrong. Regards Richard From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: >=20 > The start of the thread, posted by user "Dima", where I replied is=20 > (citation): > > I want to run my gambas2-application from USB-FLASH-DISK on the > > > computers, that do not have gambas2 installed. > > >=20 > followed by a numbered list of other questions. I replied to a few. The=20 > most important was about the Data event. >=20 > Then someone else, Faysal Banna, asked about "what I replied to Dima",=20 > without specifying more. I assumed he was talking about usb flash disk,=20 You see here is the mistake by Doriano > because the other argument is already explained in the docs. Banna=20 > replied "no no, it was about editing cells". But what he really wrote is= =20 > (citation): >=20 > > no no sir > > > > >> i was asking about the Grid View u were explaining to Dima ... > > > > >> besides i care to know a bit more about in place editing of cell= s inside > >=20=20=20 > Now, for my poor english, I suppose the adjective "besides" acts as a=20 > junction between two predicates. So he wanted to know about gridview,=20 > and *besides*, something about editing of cells. Is it clear to you? For= =20 > me, just not enough... :-) I can only say the both predicates are about the gridview. The first is just an answer and after the beside is a new request IMHO. >=20 > I did the best I could do about the Data event: I posted the good source= =20 > provided by another user on the same thread. And I simply ignored the=20 > phrase following that "besides". >=20 > I write this full explanation (sorry) because I feel a little flamed. If= =20 > you can, and if you want, go to see the whole thread on gambas-user.=20 In the Netherlands 'flame' has a little negative status.=20 I do not want flame you Doriano. I suppose because English is not you native language you feel so. I understand, its not the case. If someone is then it could be Faysal. Sorry Faysal but that was also not my intention at that moment. I just wanted to attent you about the wrong subject at that place=20 in the thread. You only didn't see it. =20=20 > It started with a "set of question", and just now Benoit is replying "you= =20 > should have been make a thread for each question" to the poster. Then=20 > someone else (Banna) wrote something not clear to me, and even changed=20 > topic.=20 This change is a (rude) way of hijack. > Lastly, you teach to me that I am hijacking! :-)=20 no no no, you did not hijack. :) > Better for me to take some course about computers...=20 You can teach me I suppose. > I like them but I don't understand them;=20 After 25 years working with those boxes I don't understand them too. > and while I'm at it, an english course too... :-)=20 That I should do also but at my age it is not easy. >=20 > Regards, > Doriano >=20 So This was a very long reply from me. Had some mixed feelings during typing and my excuse if I hurt someone. That was not the intention. just pointing the misunderstanding about the specific subject in place at moment of reply to.=20 Now I go read the remaining. Happy programming. Best regards, Ron_1st --=20 111.111111 x 111.111111 =3D 12345.678987654321 P.S. Faysal, Does the IDE use the gridview in a little or some way as you want. Then the gambas source code of the IDE is a realy good example. Look special for form and class for properties.=20 Just masterly construction/code. At least some idea should come in mind. From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: > > I want to run my gambas2-application from USB-FLASH-DISK on the > > computers, that do not have gambas2 installed. > > > > There is a folder on my USB-FLASH-DISK with my application and > > subfolders: > > 1) "bin", includes files "gba2", "gbc2", "gbi2", "gbx2", soft links; > > 2) "lib", includes files "*.so.0.0.0", "*.component", "*.gambas", soft > > links; > > 3) "share", includes "icons/*.png", "info/*" (strange files), > > "mime/*.xml". > > It also includes bash-script for copying all above to system > > folders /usr/bin/, /usr/lib/ and /usr/share. > > > > Can I run my application with just some command, without copying? >=20 > Alas the interpreter relies on the /usr/bin/gbx2(or 3) symbolic link to > know where Gambas is installed, so you cannot run gambas from a USB disk. >=20 > But we can imagine an environmental variable that tells where Gambas is > installed, without relying on a symbolic link. This will solve the first > problem. >=20 > But now you must have all shared libraries directly or indirectly used by > Gambas on your USB disk, which may be huge. To know them, you must run > "ldd" on each shared library of each component used by your project. >=20 > And you won't be able to run Gambas executables directly as they find the > interpreter with "#!/usr/bin/env gbr2", but by changing the PATH variable > so that the gbr2 symbolic link on the USB disk is found first, it will > run! >=20 > I will tell you when I make the environmental variable change. His name > will be something like GB_DIR, or GB_ROOT. >=20 With the revision #2401, you can define a GB_DIR environment variable that= =20 points at the Gambas installation directory. With that, you should be able to run Gambas from your USB key, provided tha= t=20 the destination O.S. has all the needed shared libraries installed. You can put all the needed shared libraries on the USB key too, and run Gam= bas=20 completely, by using the LD_LIBRARY_PATH environment variable. Regards, --=20 Beno=C3=AEt Minisini From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: =20 list, but it dosn't seem to work. Has anyone who has used this control got to refresh it programatically? Thanks. Richard From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: export LD_LIBRARY_PATH=3D/my/ld/dir:$LD_LIBRARY_PATH This will add your path in front of the current one, pointing to i.e. gtk l= ibs In thecode you present here the current to other libraries is killed. So add on the line at the end ':$LD_LIBRARY_PATH' (whitout quotes :) ) > You see I have to load the variable LD_LIBRARY_PATH when the user start > a session, as this is ignored if the file is called from . sh >=20 > Doriano kindly indicated that this was due to the following: >=20 Best regards, Ron_1st --=20 From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: If Key.Code =3D Key["R"] And If Key.Control Then Print "You hit CTRL+R" End If If my hands this does the following Key.code =3D 1677724 Key["R"] =3D 82 Key.control =3D true but I'm probably pressing ctrl + small r I guess: Clearly they don't match If I put on the capslock to ensure a capital R, results are similar. ie one long number, the small number. What could I be doing wrong? Regards Richard From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: > Depends: gambas3-runtime (>=3D 3.6), gambas3-runtime (<< 3.99.0), > gambas3-gb-image (>=3D 3.6), gambas3-gb-image (<< 3.99.0), > gambas3-gb-qt4 (>=3D 3.6), gambas3-gb-qt4 (<< 3.99.0), gambas3-gb-form > (>=3D 3.6), gambas 3-gb-form (<< 3.99.0), gambas3-gb-compress (>=3D 3.6), > gambas3-gb-compress (<< 3.99.0), gambas3-gb-crypt (>=3D 3.6), > gambas3-gb-crypt (<< 3.99.0), gambas3-gb-data (>=3D 3.6), > gambas3-gb-data (<< 3.99.0), gambas3-g b-db (>=3D 3.6), gambas3-gb-db > (<< 3.99.0), gambas3-gb-db-postgresql (>=3D 3.6), > gambas3-gb-db-postgresql (<< 3.99.0), gambas3-gb-form-dialog (>=3D > 3.6), gambas3-gb-form-dialog (<< 3.99.0), gambas3-gb-settings (>=3D=20 > 3.6), gambas3-gb-settings (<< 3.99.0), gambas3-gb-form-mdi (>=3D 3.6), > gambas3-gb-form-mdi (<< 3.99.0), gambas3-gb-form-stock (>=3D 3.6), > gambas3-gb-form-stock (<< 3.99.0), gambas3-gb-net (>=3D 3.6), > gambas3-gb-n et (<< 3.99.0), gambas3-gb-net-curl (>=3D 3.6), > gambas3-gb-net-curl (<< 3.99.0), gambas3-gb-openssl (>=3D 3.6), > gambas3-gb-openssl (<< 3.99.0), gambas3-gb-pcre (>=3D 3.6), > gambas3-gb-pcre (<< 3.99.0), gambas3-gb-q t4-ext (>=3D 3.6), > gambas3-gb-qt4-ext (<< 3.99.0), gambas3-gb-qt4-webkit (>=3D 3.6), > gambas3-gb-qt4-webkit (<< 3.99.0), gambas3-gb-report (>=3D 3.6), > gambas3-gb-report (<< 3.99.0) The same that produces this is version: Version: 3.5.99.1+svn20141009+build16~ubuntu14.04.1 Alles Gute Christof Thalhofer --=20 Dies ist keine Signatur --GRfENrg8SQrnJGoJw5MUTiBlJLwWGVfiT Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBAgAGBQJUNklOAAoJEOa/RCbVtb81ldEP/1zcBqUv5M6B3H3y7lcKg5E5 /deFxLKv9f5EYgT0ZhKnKzA85sakVboj24g2kULv9ENXWY47+J8owo3UpAcoC/pt 3z26XRJ98vcUJ15/GLu5ExUdpW2IbULHeJZGeA30ENJRr3ZFscFWokSKLDNF7JnM 1BKRhVO8a/QOySx4CCwoJdpP8998viTfVTPU3MaFDB73jvPod1vwQ2VDJMVzFT1Y YAooq0ENgMXrB6j4EI1kyYPinXNMpaRLhssBNr0dNcRAyQjp/ZjFjTtyNxLIvpDR HxjvpFBP2NoISCCCKiY8005Fi9485TASJC77ogSf7JdWqFoweRJwgwxptmR8BjbQ 9jKh6z8+Jip6AOvESgldyBm/o5iqj6O6TpbLO9ir/LQrumt5plaYzDXKGFYkx3cu QNpA7KBveeoyApaMq1MiSZm7zMO2Y2d9XmDMNTxRiDpL27ej8TKLSFybaetDhN0h rNjlrTvZ/AYV0zB95z5yChByYdCJcs83+F3R3S2xaOopWMvwt8BBDKm4sHl0svuN m4wr/pzXdLXsXd0jlNhjyFGGMMIX5hmpCLRZciHkMqAfBKsO/EcZuy4P0COx4SVt vH6S1lcYZoACQWgV5y6EfhjCCSilkYLBNlpBRYb5WOjDG6dJYforLuGD+ft5jX3P WhXxfTbO/N8FEJbmYtRo =Ipfs -----END PGP SIGNATURE----- --GRfENrg8SQrnJGoJw5MUTiBlJLwWGVfiT-- From bogus@does.not.exist.com Thu Oct 26 19:20:09 2017 From: bogus@does.not.exist.com () Date: Thu, 26 Oct 2017 17:20:09 -0000 Subject: No subject Message-ID: If you query such a lot of tuples into Sqlite you won't make it better, I think. Also a collection seems to be not very fast. Why not use a mature DB like Postgresql? You could try https://wiki.postgresql.org/wiki/Foreign_data_wrappers If the rows are in Postgres, you can do anything you want. Alles Gute Christof Thalhofer --=20 Dies ist keine Signatur --gtkpF71kqiG63x5lGA9FQJlLqPD9AcmiG Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJZV7/MAAoJEOa/RCbVtb81eVsQANXV5ekvg+n8A0RS3m+b0WYd 7xeS21rGuvYW925ZlDjyTdNrh8IwI5FDbi5Ee0Ev4DJYfSr8opjv2lEyy7OzeHx7 g9E0ujBCYL1yAD8ME3iJB2WjgKv/ay9PedAUtjRdi2ZxDIAiKuMuH5F58m7UC8k/ nQaN7abct2Wu7TkSZfjNe5EsSEi7DP7DGeXUWzz9+s2P9N6jz70UKxIKpPdTFM9d NQJJZcudSVsbiPV6CrhszCUvJOZzKa9RNCPWLm4i0cXMPbOelMSInW+oCr1WN84l sEfUgIPQnN9NLtGZlWH+7+fxfx5fo8buDu8LRBKvdyM0OZ9oOxAkyjSv5jy9KdJi /YqjgRVbdvUfsIYuIEhVDeiWjEGhY+kMLKz4KY5cK/gtAacTYckRQ0hv9adNFzW/ l1c+hyyF3k+EIPJjjuSGwNABu+MGXziOM9zRP5E1wV9RVu2ebIPsLnKGle08Zb8L 5wFhWd00IBKbkAhAadifzASvuJG9AlZdlqACIwntLOmYrcEwr6hoAIb98FEswVjj OBXqN9S+emFM/CYqjPrZUYNnwpUgjlkufVll/7LN/MAsOFWnxQ4yA1VZl1eECkdO nHT7X+kcP4i3rOJRxqXOZOlB+WxNs589zngk1bd0AhG65ILV130HO9PMZKnw6kCO NOQulTp84TXpRIiHB4R7 =Sp+r -----END PGP SIGNATURE----- --gtkpF71kqiG63x5lGA9FQJlLqPD9AcmiG-- From moviga at ...3488... Mon Oct 2 18:00:13 2017 From: moviga at ...3488... (Moviga Technologies) Date: Mon, 02 Oct 2017 18:00:13 +0200 Subject: [Gambas-user] Marco? Message-ID: <639df81059f8d5be0d1a50e891100628@...3488...> Marco? From taboege at ...626... Mon Oct 2 18:04:22 2017 From: taboege at ...626... (Tobias Boege) Date: Mon, 2 Oct 2017 18:04:22 +0200 Subject: [Gambas-user] Marco? In-Reply-To: <639df81059f8d5be0d1a50e891100628@...3488...> References: <639df81059f8d5be0d1a50e891100628@...3488...> Message-ID: <20171002160422.GZ26449@...3691...> On Mon, 02 Oct 2017, Moviga Technologies via Gambas-user wrote: > Marco? Polo! -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From moviga at ...3488... Mon Oct 2 18:07:51 2017 From: moviga at ...3488... (Moviga Technologies) Date: Mon, 02 Oct 2017 18:07:51 +0200 Subject: [Gambas-user] Marco? In-Reply-To: <20171002160422.GZ26449@...3691...> References: <639df81059f8d5be0d1a50e891100628@...3488...> <20171002160422.GZ26449@...3691...> Message-ID: <2ed5aabaf270fb086d33253b3887bda7@...3488...> :) So the mailing list is still alive. It seemed so quiet. From mckaygerhard at ...626... Mon Oct 2 19:39:36 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Mon, 2 Oct 2017 13:39:36 -0400 Subject: [Gambas-user] Marco? In-Reply-To: <2ed5aabaf270fb086d33253b3887bda7@...3488...> References: <639df81059f8d5be0d1a50e891100628@...3488...> <20171002160422.GZ26449@...3691...> <2ed5aabaf270fb086d33253b3887bda7@...3488...> Message-ID: but gambas team are very busy in the development and fixeds, specially benoit Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-02 12:07 GMT-04:00 Moviga Technologies via Gambas-user < gambas-user at lists.sourceforge.net>: > :) > > So the mailing list is still alive. It seemed so quiet. > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas.fr at ...626... Tue Oct 3 10:10:49 2017 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 3 Oct 2017 10:10:49 +0200 Subject: [Gambas-user] Marco? In-Reply-To: References: <639df81059f8d5be0d1a50e891100628@...3488...> <20171002160422.GZ26449@...3691...> <2ed5aabaf270fb086d33253b3887bda7@...3488...> Message-ID: And also we have all our own life. For example i'm vinegrower and here it's time to harvesting and i'm also i'm a distiller so then i'm distilling. Benoit is a devellopper / actor / singer / ... And so on for the others developpers. For many of us gambas is only a free time hobby and we need to eat too :-) https://plus.google.com/u/0/+FabienBodard/posts/4TcHjvXNQsk 2017-10-02 19:39 GMT+02:00 PICCORO McKAY Lenz : > but gambas team are very busy in the development and fixeds, specially > benoit > > > > Lenz McKAY Gerardo (PICCORO) > http://qgqlochekone.blogspot.com > > 2017-10-02 12:07 GMT-04:00 Moviga Technologies via Gambas-user < > gambas-user at lists.sourceforge.net>: > >> :) >> >> So the mailing list is still alive. It seemed so quiet. >> ------------------------------------------------------------ >> ------------------ >> Check out the vibrant tech community on one of the world's most >> engaging tech sites, Slashdot.org! http://sdm.link/slashdot >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Fabien Bodard From bm.530502 at ...626... Tue Oct 3 10:25:39 2017 From: bm.530502 at ...626... (M Be) Date: Tue, 03 Oct 2017 08:25:39 +0000 Subject: [Gambas-user] Marco? In-Reply-To: References: <639df81059f8d5be0d1a50e891100628@...3488...> <20171002160422.GZ26449@...3691...> <2ed5aabaf270fb086d33253b3887bda7@...3488...> Message-ID: Then ? votre sant?! And I wish you a goog time and an abundant harvest :) Regards Ingo Fabien Bodard schrieb am Di. 3. Okt. 2017 um 10:11: > And also we have all our own life. For example i'm vinegrower and here > it's time to harvesting and i'm also i'm a distiller so then i'm > distilling. > > Benoit is a devellopper / actor / singer / ... > > And so on for the others developpers. For many of us gambas is only a > free time hobby and we need to eat too :-) > > https://plus.google.com/u/0/+FabienBodard/posts/4TcHjvXNQsk > > 2017-10-02 19:39 GMT+02:00 PICCORO McKAY Lenz : > > but gambas team are very busy in the development and fixeds, specially > > benoit > > > > > > > > Lenz McKAY Gerardo (PICCORO) > > http://qgqlochekone.blogspot.com > > > > 2017-10-02 12:07 GMT-04:00 Moviga Technologies via Gambas-user < > > gambas-user at lists.sourceforge.net>: > > > >> :) > >> > >> So the mailing list is still alive. It seemed so quiet. > >> ------------------------------------------------------------ > >> ------------------ > >> Check out the vibrant tech community on one of the world's most > >> engaging tech sites, Slashdot.org! http://sdm.link/slashdot > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > >> > > > ------------------------------------------------------------------------------ > > Check out the vibrant tech community on one of the world's most > > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > -- > Fabien Bodard > > > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From moviga at ...3488... Tue Oct 3 16:43:41 2017 From: moviga at ...3488... (Moviga Technologies) Date: Tue, 03 Oct 2017 16:43:41 +0200 Subject: [Gambas-user] Marco? In-Reply-To: References: <639df81059f8d5be0d1a50e891100628@...3488...> <20171002160422.GZ26449@...3691...> <2ed5aabaf270fb086d33253b3887bda7@...3488...> Message-ID: <042e186dc52d42e22f787e6ab0725e04@...3488...> I was just wondering if the list had stopped working again, that's all. I too have a life outside of Gambas, that's for sure, hahaha :) From gambas at ...1... Tue Oct 3 20:29:39 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Tue, 3 Oct 2017 20:29:39 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1117: Search please In-Reply-To: <59d3d680.0ee61c0a.39b79.eb36SMTPIN_ADDED_BROKEN@...2392...> References: <59d3d680.0ee61c0a.39b79.eb36SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1117: Search please Date?: Tue, 03 Oct 2017 18:27:10 GMT De?: bugtracker at ...3416... Pour?: chrisml at ...3340..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1117&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Fixed. From gambas at ...1... Tue Oct 3 20:34:35 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Tue, 3 Oct 2017 20:34:35 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request In-Reply-To: <59d3d7ea.2990df0a.b122e.be60SMTPIN_ADDED_BROKEN@...2392...> References: <59d3d7ea.2990df0a.b122e.be60SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request Date?: Tue, 03 Oct 2017 18:33:13 GMT De?: bugtracker at ...3416... Pour?: pavelasb at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1193&from=L21haW4- Comment #1 by Beno?t MINISINI: Can you join a little project that reproduces the problem? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From gambas at ...1... Tue Oct 3 20:39:35 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Tue, 3 Oct 2017 20:39:35 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1173: feat req: integrate sha1 commits with repository in bugtracker In-Reply-To: <59d3d848.cb0a1c0a.5b130.0f8eSMTPIN_ADDED_BROKEN@...2392...> References: <59d3d848.cb0a1c0a.5b130.0f8eSMTPIN_ADDED_BROKEN@...2392...> Message-ID: <69e6dd9e-d474-9ce3-b9fb-99ffb3dfc080@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1173: feat req: integrate sha1 commits with repository in bugtracker Date?: Tue, 03 Oct 2017 18:34:47 GMT De?: bugtracker at ...3416... Pour?: mckaygerhard at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1173&from=L21haW4- Beno?t MINISINI changed the state of the bug to: NeedsInfo. From gambas at ...1... Tue Oct 3 20:44:24 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Tue, 3 Oct 2017 20:44:24 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1093: Short cut keys not working for gb.qt5 menu if parent menu caption is blank In-Reply-To: <59d3d97c.c2dc1c0a.34446.3924SMTPIN_ADDED_BROKEN@...2392...> References: <59d3d97c.c2dc1c0a.34446.3924SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1093: Short cut keys not working for gb.qt5 menu if parent menu caption is blank Date?: Tue, 03 Oct 2017 18:39:55 GMT De?: bugtracker at ...3416... Pour?: isafiur at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1093&from=L21haW4- Comment #3 by Beno?t MINISINI: I still can't reproduce the bug, with QT 5.7.1. I suppose this is a bug in your version of QT. Do you upgrade it since? In the meanwhile, I marked the bug as "upstream". Beno?t MINISINI changed the state of the bug to: Upstream. From gambas at ...1... Tue Oct 3 22:20:16 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Tue, 3 Oct 2017 22:20:16 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request In-Reply-To: <59d3f001.4fd11c0a.6e92a.fb04SMTPIN_ADDED_BROKEN@...2392...> References: <59d3f001.4fd11c0a.6e92a.fb04SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request Date?: Tue, 03 Oct 2017 20:16:00 GMT De?: bugtracker at ...3416... Pour?: pavelasb at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1193&from=L21haW4- Comment #2 by paul BARAS: sure paul BARAS changed the state of the bug to: Accepted. From mckaygerhard at ...626... Wed Oct 4 01:35:33 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Tue, 3 Oct 2017 19:35:33 -0400 Subject: [Gambas-user] Marco? In-Reply-To: <042e186dc52d42e22f787e6ab0725e04@...3488...> References: <639df81059f8d5be0d1a50e891100628@...3488...> <20171002160422.GZ26449@...3691...> <2ed5aabaf270fb086d33253b3887bda7@...3488...> <042e186dc52d42e22f787e6ab0725e04@...3488...> Message-ID: hey Moviga, you started here, dont go so easy! XD here class are just started and work too.. Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-03 10:43 GMT-04:00 Moviga Technologies via Gambas-user < gambas-user at lists.sourceforge.net>: > I was just wondering if the list had stopped working again, that's all. > I too have a life outside of Gambas, that's for sure, hahaha :) > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Wed Oct 4 02:59:59 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 4 Oct 2017 02:59:59 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1114: Agregar "Insertar fecha" In-Reply-To: <59d43212.839ddf0a.702ce.58b7SMTPIN_ADDED_BROKEN@...2392...> References: <59d43212.839ddf0a.702ce.58b7SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <1a7a6a83-cd86-cee7-be02-2255322b2190@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1114: Agregar "Insertar fecha" Date?: Wed, 04 Oct 2017 00:57:54 GMT De?: bugtracker at ...3416... Pour?: uno.cero at ...3595..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1114&from=L21haW4- Comment #4 by Beno?t MINISINI: Done in commit https://gitlab.com/gambas/gambas/commit/382f33c70dcd03fd06fe95a4e77630301df0071a Beno?t MINISINI changed the state of the bug to: Fixed. From gambas at ...1... Wed Oct 4 03:09:56 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 4 Oct 2017 03:09:56 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #808: [gtk3] Form/window can resize without any code for resize in source code In-Reply-To: <59d433ba.d3a71c0a.e17bb.c68fSMTPIN_ADDED_BROKEN@...2392...> References: <59d433ba.d3a71c0a.e17bb.c68fSMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #808: [gtk3] Form/window can resize without any code for resize in source code Date?: Wed, 04 Oct 2017 01:04:57 GMT De?: bugtracker at ...3416... Pour?: author.ilmi at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.808&from=L21haW4- Comment #6 by Beno?t MINISINI: Now it's a year old, I mark that as Upstream. Do you still have the bug? Beno?t MINISINI changed the state of the bug to: Upstream. From gambas at ...1... Wed Oct 4 14:44:51 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 4 Oct 2017 14:44:51 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1194: Different limitation : Eval("&HFFFFFFFFFFFFFFF0"), I get Syntax Error In-Reply-To: References: Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1194: Different limitation : Eval("&HFFFFFFFFFFFFFFF0"), I get Syntax Error Date?: Wed, 04 Oct 2017 04:03:21 GMT De?: bugtracker at ...3416... Pour?: author.ilmi at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1194&from=L21haW4- Zainudin AHMAD reported a new bug. Summary ------- Different limitation : Eval("&HFFFFFFFFFFFFFFF0"), I get Syntax Error Type : Bug Priority : Medium Gambas version : Master Product : Language Description ----------- Hexa number have different limitation. Print &HFFFFFFFFFFFFFFF0 ' ==> -16 Print Eval("&HFFFFFFFFFFFFFFF0") ' ==> Syntax Error Reproduce the Bug : 1) Run project (attach project) System information ------------------ [System] Gambas=3.10.90 f1046c7 (master) OperatingSystem=Linux Kernel=4.10.0-32-generic Architecture=x86_64 Distribution=Ubuntu 16.04.2 LTS Desktop=XFCE Theme=Gtk Language=en_US.UTF-8 Memory=1744M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] CLUTTER_BACKEND=x11 CLUTTER_IM_MODULE= DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-g9uCEv9Q47 DEFAULTS_PATH=/usr/share/gconf/xubuntu.default.path DESKTOP_SESSION=xubuntu DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xubuntu GDM_LANG=en_US GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GNOME_KEYRING_CONTROL= GNOME_KEYRING_PID= GPG_AGENT_INFO=/.gnupg/S.gpg-agent:0:1 GTK_IM_MODULE= GTK_OVERLAY_SCROLLING=0 HOME= IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=en_US.UTF-8 LANGUAGE=en_US LC_ADDRESS=id_ID.UTF-8 LC_IDENTIFICATION=id_ID.UTF-8 LC_MEASUREMENT=id_ID.UTF-8 LC_MONETARY=id_ID.UTF-8 LC_NAME=id_ID.UTF-8 LC_NUMERIC=id_ID.UTF-8 LC_PAPER=id_ID.UTF-8 LC_TELEPHONE=id_ID.UTF-8 LC_TIME=id_ID.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/xubuntu.mandatory.path PATH=/bin:/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD= QT4_IM_MODULE= QT_ACCESSIBILITY=1 QT_IM_MODULE=compose QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_STYLE_OVERRIDE=gtk SESSION=xubuntu SESSIONTYPE= SESSION_MANAGER=local/:@/tmp/.ICE-unix/1269,unix/:/tmp/.ICE-unix/1269 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime UPSTART_EVENTS=started xsession UPSTART_INSTANCE= UPSTART_JOB=startxfce4 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1116 USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-xubuntu:/usr/share/upstart/xdg:/etc/xdg:/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/share/xubuntu:/usr/share/xfce4:/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share:/var/lib/snapd/desktop:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=xubuntu XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS= From gambas at ...1... Wed Oct 4 14:44:50 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 4 Oct 2017 14:44:50 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #808: [gtk3] Form/window can resize without any code for resize in source code In-Reply-To: <59d457ff.2284df0a.4601d.c416SMTPIN_ADDED_BROKEN@...2392...> References: <59d457ff.2284df0a.4601d.c416SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <9a39ad56-721d-effc-7f1a-ef75dc1cc440@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #808: [gtk3] Form/window can resize without any code for resize in source code Date?: Wed, 04 Oct 2017 03:39:42 GMT De?: bugtracker at ...3416... Pour?: author.ilmi at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.808&from=L21haW4- Comment #7 by Zainudin AHMAD: with 32 and 64 bit os (*ubuntu 16.04) fine, work as expected. From gambas at ...1... Wed Oct 4 18:16:56 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 4 Oct 2017 18:16:56 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1093: Short cut keys not working for gb.qt5 menu if parent menu caption is blank In-Reply-To: <59d50873.0f581c0a.f32c6.14d9SMTPIN_ADDED_BROKEN@...2392...> References: <59d50873.0f581c0a.f32c6.14d9SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <8ae45cd0-e3b2-dbfc-e0f4-37ae5fa1849b@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1093: Short cut keys not working for gb.qt5 menu if parent menu caption is blank Date?: Wed, 04 Oct 2017 16:12:33 GMT De?: bugtracker at ...3416... Pour?: isafiur at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1093&from=L21haW4- Comment #4 by Safiur RAHMAN: You are right Benoit. I don't get this problem in later version of QT. This might be QT bug. From gambas at ...1... Thu Oct 5 02:30:19 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 02:30:19 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1194: Different limitation : Eval("&HFFFFFFFFFFFFFFF0"), I get Syntax Error In-Reply-To: <59d57c34.a3a0df0a.67386.d384SMTPIN_ADDED_BROKEN@...2392...> References: <59d57c34.a3a0df0a.67386.d384SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1194: Different limitation : Eval("&HFFFFFFFFFFFFFFF0"), I get Syntax Error Date?: Thu, 05 Oct 2017 00:26:27 GMT De?: bugtracker at ...3416... Pour?: author.ilmi at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1194&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From gambas at ...1... Thu Oct 5 03:00:38 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 03:00:38 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events In-Reply-To: References: Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events Date?: Thu, 05 Oct 2017 00:56:30 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1195&from=L21haW4- Tony MOREHEN reported a new bug. Summary ------- ServerSocket.Attach() returns a Socket object that does not raise events Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description ----------- Gamabas documentation for serversocket reads: The new Socket object will be automatically attached to "Socket" event observer. This does not happen. The client socket does not raise any "Socket" events. A cursory check of serversocket.c did not reveal any attempt to automatically attach events to a "Socket" observer. When I ran Object.Attach(clientsocket,Me,"Socket"), events were raised as they should be. Perhaps all is needed is to change the documentation to note that Object.Attach() is needed. Example code (for full details see gbDummyImapServer, attached to my next bug report). Dim MySock As Socket MySock = Srv.Accept() Object.Attach(MySock, Me, "Socket") System information ------------------ [System] Gambas=3.9.90 r8018 OperatingSystem=Linux Kernel=4.8.15-1-MANJARO Architecture=x86_64 Distribution=Manjaro Linux Desktop=XFCE Theme=Gtk Language=en_CA.utf8 Memory=3947M [Libraries] Cairo=libcairo.so.2.11400.8 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.9 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.1002.0 GTK+2=libgtk-x11-2.0.so.0.2400.31 GTK+3=libgtk-3.so.0.2200.5 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.66.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.7.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=xfce DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xfce GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GTK2_RC_FILES=/.gtkrc-2.0 GTK_MODULES=canberra-gtk-module HOME= LANG=en_CA.utf8 LC_ADDRESS=en_CA.UTF-8 LC_IDENTIFICATION=en_CA.UTF-8 LC_MEASUREMENT=en_CA.UTF-8 LC_MONETARY=en_CA.UTF-8 LC_NAME=en_CA.UTF-8 LC_NUMERIC=en_CA.UTF-8 LC_PAPER=en_CA.UTF-8 LC_TELEPHONE=en_CA.UTF-8 LC_TIME=en_CA.UTF-8 LOGNAME= MAIL=/var/spool/mail/ MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl PWD= QT_QPA_PLATFORMTHEME=qt5ct SAL_USE_VCLPLUGIN=gtk SESSION_MANAGER=local/:@/tmp/.ICE-unix/9931,unix/:/tmp/.ICE-unix/9931 SHELL=/bin/bash SHLVL=2 SSH_AGENT_PID=9936 SSH_AUTH_SOCK=/tmp/ssh-bUdChQqs4Zo0/agent.9935 TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/local/share:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=xfce XDG_SESSION_ID=c4 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session1 XDG_SESSION_TYPE=x11 XDG_VTNR=7 _=/usr/bin/gambas3 From gambas at ...1... Thu Oct 5 03:05:41 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 03:05:41 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1194: Different limitation : Eval("&HFFFFFFFFFFFFFFF0"), I get Syntax Error In-Reply-To: <59d584d3.d19cdf0a.4cedf.8b46SMTPIN_ADDED_BROKEN@...2392...> References: <59d584d3.d19cdf0a.4cedf.8b46SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <4318a074-291f-b5b2-423e-aa2126f61d5c@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1194: Different limitation : Eval("&HFFFFFFFFFFFFFFF0"), I get Syntax Error Date?: Thu, 05 Oct 2017 01:03:14 GMT De?: bugtracker at ...3416... Pour?: author.ilmi at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1194&from=L21haW4- Comment #1 by Beno?t MINISINI: Fixed in commit https://gitlab.com/gambas/gambas/commit/57820e6d44865a3e660d4a27c81fdeb3eeeb1317 Beno?t MINISINI changed the state of the bug to: Fixed. From gambas at ...1... Thu Oct 5 03:10:48 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 03:10:48 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events In-Reply-To: <59d585bf.aaacdf0a.9b9f4.c831SMTPIN_ADDED_BROKEN@...2392...> References: <59d585bf.aaacdf0a.9b9f4.c831SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events Date?: Thu, 05 Oct 2017 01:07:10 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1195&from=L21haW4- Comment #1 by Beno?t MINISINI: Strange, this is done at CServerSocket.c:518 : socket = GB.New(GB.FindClass("Socket"), "Socket", NULL); . /|\ | here ---' From gambas at ...1... Thu Oct 5 03:30:35 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 03:30:35 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: <59d58a93.c83e1c0a.3184.d4d3SMTPIN_ADDED_BROKEN@...2392...> References: <59d58a93.c83e1c0a.3184.d4d3SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <43e8c47d-54f5-434d-580f-a9f38e4cfedd@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. Date?: Thu, 05 Oct 2017 01:27:47 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1196&from=L21haW4- Tony MOREHEN added an attachment: gbImap-0.0.1.tar.gz . From gambas at ...1... Thu Oct 5 03:30:35 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 03:30:35 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: <59d58aa2.c4d91c0a.4367f.a3efSMTPIN_ADDED_BROKEN@...2392...> References: <59d58aa2.c4d91c0a.4367f.a3efSMTPIN_ADDED_BROKEN@...2392...> Message-ID: <8749ca6f-b893-eba0-477e-cb1a4a1834bf@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. Date?: Thu, 05 Oct 2017 01:28:02 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1196&from=L21haW4- Tony MOREHEN added an attachment: gbDummyImapServer-0.0.2.tar.gz From gambas at ...1... Thu Oct 5 03:30:34 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 03:30:34 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: References: Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. Date?: Thu, 05 Oct 2017 01:27:17 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1196&from=L21haW4- Tony MOREHEN reported a new bug. Summary ------- Socket Lof returns 0 when data is available. Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description ----------- My Imap test program runs flawlessly when I do a direct read from the socket after sending a command. However the program locks when I try to queue messages from the server. I need to queue messages because I need to capture unexpected messages from the server, ie messages that are not replies to my command. I've tried two approaches to read messages from the server: the first uses the Socket_Read event, When the Read event is triggered, my code uses Readline to read from the Socket, until there is no more data waiting. After some number of lines, the Read event is no longer triggered even though the server has sent that data. The second approach uses polling to check if data is available. every 0.5 seconds, a timer event is triggered. My code then checks the length of the socket stream and, if non-zero uses Readline to read until no more data is available. After a similar number of lines to the first approach, stream length stays a zero even though the server has sent the data. I suspect that there may be issues the Gambas code that reads Lof(). The Read event is triggered by a watch routine that is, essentially, an infinite comprised of a wait delay followed by a Lof test. If Lof > 0 then the Read event is raised. Lof is then common to both approaches and so is the likely culprit. I know that the server has sent the lost data, because I am using a Dummy server that sends the correct answers to to the Imap test program. The two programs connect over localhost so network errors can be discounted. I've attached the Imap test program and the dummy server. System information ------------------ [System] Gambas=3.9.90 r8018 OperatingSystem=Linux Kernel=4.8.15-1-MANJARO Architecture=x86_64 Distribution=Manjaro Linux Desktop=XFCE Theme=Gtk Language=en_CA.utf8 Memory=3947M [Libraries] Cairo=libcairo.so.2.11400.8 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.9 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.1002.0 GTK+2=libgtk-x11-2.0.so.0.2400.31 GTK+3=libgtk-3.so.0.2200.5 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.66.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.7.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=xfce DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xfce GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GTK2_RC_FILES=/.gtkrc-2.0 GTK_MODULES=canberra-gtk-module HOME= LANG=en_CA.utf8 LC_ADDRESS=en_CA.UTF-8 LC_IDENTIFICATION=en_CA.UTF-8 LC_MEASUREMENT=en_CA.UTF-8 LC_MONETARY=en_CA.UTF-8 LC_NAME=en_CA.UTF-8 LC_NUMERIC=en_CA.UTF-8 LC_PAPER=en_CA.UTF-8 LC_TELEPHONE=en_CA.UTF-8 LC_TIME=en_CA.UTF-8 LOGNAME= MAIL=/var/spool/mail/ MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl PWD= QT_QPA_PLATFORMTHEME=qt5ct SAL_USE_VCLPLUGIN=gtk SESSION_MANAGER=local/:@/tmp/.ICE-unix/9931,unix/:/tmp/.ICE-unix/9931 SHELL=/bin/bash SHLVL=2 SSH_AGENT_PID=9936 SSH_AUTH_SOCK=/tmp/ssh-bUdChQqs4Zo0/agent.9935 TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/local/share:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=xfce XDG_SESSION_ID=c4 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session1 XDG_SESSION_TYPE=x11 XDG_VTNR=7 _=/usr/bin/gambas3 From gambas at ...1... Thu Oct 5 04:46:33 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 04:46:33 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: <59d59d03.c5881c0a.6c0ee.d7cfSMTPIN_ADDED_BROKEN@...2392...> References: <59d59d03.c5881c0a.6c0ee.d7cfSMTPIN_ADDED_BROKEN@...2392...> Message-ID: <888272c1-283d-47a6-58bd-bde0697b5222@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. Date?: Thu, 05 Oct 2017 02:46:26 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1196&from=L21haW4- Comment #1 by Beno?t MINISINI: Does commit https://gitlab.com/gambas/gambas/commit/e02d02880660eb796d60ca6b0d32fbf08bf9eb8f make Lof() work correctly on Sockets? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From tmorehen at ...3602... Thu Oct 5 06:18:01 2017 From: tmorehen at ...3602... (Tony Morehen) Date: Thu, 5 Oct 2017 00:18:01 -0400 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: <888272c1-283d-47a6-58bd-bde0697b5222@...1...> References: <59d59d03.c5881c0a.6c0ee.d7cfSMTPIN_ADDED_BROKEN@...2392...> <888272c1-283d-47a6-58bd-bde0697b5222@...1...> Message-ID: That fixes both polling and events.? Great work. and quite the turnaround! The change makes sense.? I read the original code as testing the actual, physical socket while the revised code effectively tests a virtual socket with responses buffered to the stream. Unfortunately, the fix does not affect the no events problem I have in the serversocket class.? In the ClsServer.class of gbDummyImapServer, the Socket_Read event is only triggered when line 35, the Object.Attach() line is included.? Comment out that line and Socket_rRead is never called. On 2017-10-04 10:46 PM, Beno?t Minisini via Gambas-user wrote: > > > -------- Message transf?r? -------- > Sujet?: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data > is available. > Date?: Thu, 05 Oct 2017 02:46:26 GMT > De?: bugtracker at ...3416... > Pour?: tmorehen at ...3634..., g4mba5 at ...626... > > http://gambaswiki.org/bugtracker/edit?object=BUG.1196&from=L21haW4- > > Comment #1 by Beno?t MINISINI: > > Does commit > https://gitlab.com/gambas/gambas/commit/e02d02880660eb796d60ca6b0d32fbf08bf9eb8f > make Lof() work correctly on Sockets? > > Beno?t MINISINI changed the state of the bug to: NeedsInfo. > > > > > ------------------------------------------------------------------------------ > > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Thu Oct 5 14:55:05 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 14:55:05 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: References: <59d59d03.c5881c0a.6c0ee.d7cfSMTPIN_ADDED_BROKEN@...2392...> <888272c1-283d-47a6-58bd-bde0697b5222@...1...> Message-ID: <5884d258-f25b-38bd-8755-586b2813fa13@...1...> Le 05/10/2017 ? 06:18, Tony Morehen a ?crit?: > That fixes both polling and events.? Great work. and quite the turnaround! > > The change makes sense.? I read the original code as testing the actual, > physical socket while the revised code effectively tests a virtual > socket with responses buffered to the stream. Please put your comment in the bugtracker. > > Unfortunately, the fix does not affect the no events problem I have in > the serversocket class.? In the ClsServer.class of gbDummyImapServer, > the Socket_Read event is only triggered when line 35, the > Object.Attach() line is included.? Comment out that line and > Socket_rRead is never called. > Logical, it's not the same problem. I have yet no idea why it does not attach the socket internally as it should do. -- Beno?t Minisini From gambas at ...1... Thu Oct 5 15:24:48 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 15:24:48 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: <59d631b8.44df1c0a.864c2.0841SMTPIN_ADDED_BROKEN@...2392...> References: <59d631b8.44df1c0a.864c2.0841SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <41d723d3-066a-39ef-97ad-ad1f2501f841@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. Date?: Thu, 05 Oct 2017 13:20:55 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1196&from=L21haW4- Tony MOREHEN changed the state of the bug to: Fixed. . From gambas at ...1... Thu Oct 5 15:24:48 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 15:24:48 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. In-Reply-To: <59d631d5.2283df0a.c9106.530bSMTPIN_ADDED_BROKEN@...2392...> References: <59d631d5.2283df0a.c9106.530bSMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1196: Socket Lof returns 0 when data is available. Date?: Thu, 05 Oct 2017 13:21:24 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1196&from=L21haW4- Comment #2 by Tony MOREHEN: That fixes both polling and events. Great work. and quite the turnaround! The change makes sense. I read the original code as testing the actual, physical socket while the revised code effectively tests a virtual socket with responses buffered to the stream. From gambas at ...1... Thu Oct 5 23:21:35 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 5 Oct 2017 23:21:35 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events In-Reply-To: <59d6a211.d28bdf0a.f9eff.3272SMTPIN_ADDED_BROKEN@...2392...> References: <59d6a211.d28bdf0a.f9eff.3272SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events Date?: Thu, 05 Oct 2017 21:20:17 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1195&from=L21haW4- Comment #2 by Beno?t MINISINI: It should be fixed in commit https://gitlab.com/gambas/gambas/commit/55a1701759bd29384079ad584aef8203f18686f5 Beno?t MINISINI changed the state of the bug to: Fixed. From gambas at ...1... Fri Oct 6 14:28:26 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 6 Oct 2017 14:28:26 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events In-Reply-To: <59d6c801.c29ddf0a.29dd6.4cabSMTPIN_ADDED_BROKEN@...2392...> References: <59d6c801.c29ddf0a.29dd6.4cabSMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1195: ServerSocket.Attach() returns a Socket object that does not raise events Date?: Fri, 06 Oct 2017 00:02:08 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1195&from=L21haW4- Comment #3 by Tony MOREHEN: It is indeed fixed. From gambas at ...1... Fri Oct 6 14:38:09 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 6 Oct 2017 14:38:09 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request In-Reply-To: <59d7783d.4b91df0a.5adce.831cSMTPIN_ADDED_BROKEN@...2392...> References: <59d7783d.4b91df0a.5adce.831cSMTPIN_ADDED_BROKEN@...2392...> Message-ID: <90abf6fc-cc2a-1361-86bc-2f139c068d4a@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request Date?: Fri, 06 Oct 2017 12:34:04 GMT De?: bugtracker at ...3416... Pour?: pavelasb at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1193&from=L21haW4- Beno?t MINISINI changed the state of the bug to: NeedsInfo. From gambas at ...1... Sat Oct 7 03:00:57 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sat, 7 Oct 2017 03:00:57 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request In-Reply-To: <59d82710.f382df0a.9c87c.f284SMTPIN_ADDED_BROKEN@...2392...> References: <59d82710.f382df0a.9c87c.f284SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <8bb856d0-5dc8-f41d-4700-f7d510cfb74f@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request Date?: Sat, 07 Oct 2017 00:59:59 GMT De?: bugtracker at ...3416... Pour?: pavelasb at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1193&from=L21haW4- paul BARAS added an attachment: test.zip From gambas at ...1... Sun Oct 8 00:27:55 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sun, 8 Oct 2017 00:27:55 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1197: Error with Commit b1de31eb In-Reply-To: References: Message-ID: <164eb15e-d141-9738-34ec-044ef5475649@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1197: Error with Commit b1de31eb Date?: Sat, 07 Oct 2017 22:24:59 GMT De?: bugtracker at ...3416... Pour?: vuott at ...325..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1197&from=L21haW4- vuott VUOTT reported a new bug. Summary ------- Error with Commit b1de31eb Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description ----------- I obtained an error installing Commit b1de31eb: CXX gb_gtk_la-gapplication.lo gapplication.cpp: In function ?gControl* find_child(gControl*, int, int, gControl*)?: gapplication.cpp:168:1: internal compiler error: Segmentation fault } ^ Please submit a full bug report, with preprocessed source if appropriate. See for instructions. Makefile:1297: recipe for target 'gb_gtk_la-gapplication.lo' failed make[5]: *** [gb_gtk_la-gapplication.lo] Error 1 make[5]: Leaving directory '/home/vuott/gambasdevel/gb.gtk/src' Makefile:1380: recipe for target 'all-recursive' failed make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory '/home/vuott/gambasdevel/gb.gtk/src' Makefile:443: recipe for target 'all-recursive' failed make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory '/home/vuott/gambasdevel/gb.gtk' Makefile:375: recipe for target 'all' failed make[2]: *** [all] Error 2 make[2]: Leaving directory '/home/vuott/gambasdevel/gb.gtk' Makefile:439: recipe for target 'all-recursive' failed make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory '/home/vuott/gambasdevel' Makefile:380: recipe for target 'all' failed make: *** [all] Error 2 From gambas at ...1... Sun Oct 8 01:03:09 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sun, 8 Oct 2017 01:03:09 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1197: Error with Commit b1de31eb In-Reply-To: <59d95c5c.12071c0a.c4de4.745bSMTPIN_ADDED_BROKEN@...2392...> References: <59d95c5c.12071c0a.c4de4.745bSMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1197: Error with Commit b1de31eb Date?: Sat, 07 Oct 2017 22:59:39 GMT De?: bugtracker at ...3416... Pour?: vuott at ...325..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1197&from=L21haW4- Comment #1 by Beno?t MINISINI: This is a bug in the compiler or in your hardware. Beno?t MINISINI changed the state of the bug to: Upstream. From gambas at ...1... Sun Oct 8 08:49:22 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sun, 8 Oct 2017 08:49:22 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1197: Error with Commit b1de31eb In-Reply-To: <59d97ed4.cdc5df0a.19a4e.0c10SMTPIN_ADDED_BROKEN@...2392...> References: <59d97ed4.cdc5df0a.19a4e.0c10SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <8a5c3a47-04ae-13d0-a13b-149fca07461a@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1197: Error with Commit b1de31eb Date?: Sun, 08 Oct 2017 01:26:43 GMT De?: bugtracker at ...3416... Pour?: vuott at ...325..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1197&from=L21haW4- Comment #2 by vuott VUOTT: Uhmmm... effectively, before, I had a system crash. Now I tried again: now it is OK. vuott VUOTT changed the state of the bug to: Fixed. From bagonergi at ...626... Sun Oct 8 11:58:20 2017 From: bagonergi at ...626... (Gianluigi) Date: Sun, 8 Oct 2017 11:58:20 +0200 Subject: [Gambas-user] Gambas with Suse Leap 42.3 Message-ID: Hi all, a friend of ours asks if anyone uses Gambas with Suse Leap 42.3. Any problems? Regards Gianluigi From gambas at ...1... Wed Oct 11 23:56:23 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 11 Oct 2017 23:56:23 +0200 Subject: [Gambas-user] New git support in the IDE Message-ID: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> Hi, I have just committed git support in 'master'. The whole IDE version control management has been redesigned. Now version control is managed through a sub-menu in the 'Project' menu, or an equivalent menu button in the main toolbar. Everything is done except conflict management. I must understand how it works in git, and I'd like to have a file diff tool directly in the IDE, but it's a big job. Please report any problem or suggestion about it, especially in the git part. Like most of you, I am a git newbie, and this is very fresh code, so be careful with your projects! Enjoy. -- Beno?t Minisini From taboege at ...626... Thu Oct 12 00:09:29 2017 From: taboege at ...626... (Tobias Boege) Date: Thu, 12 Oct 2017 00:09:29 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> Message-ID: <20171011220929.GF797@...3691...> On Wed, 11 Oct 2017, Beno?t Minisini via Gambas-user wrote: > Hi, > > I have just committed git support in 'master'. > > The whole IDE version control management has been redesigned. Now version > control is managed through a sub-menu in the 'Project' menu, or an > equivalent menu button in the main toolbar. > > Everything is done except conflict management. I must understand how it > works in git, and I'd like to have a file diff tool directly in the IDE, but > it's a big job. > Just in case you forgot, there is already the Patch class in the IDE which I wrote for the Patch dialogs. It's not much and they don't deal with conflict files but they do parse "diff -u" patches like the ones "git diff" produces. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From gambas at ...1... Thu Oct 12 00:15:30 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 00:15:30 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: <20171011220929.GF797@...3691...> References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> Message-ID: Le 12/10/2017 ? 00:09, Tobias Boege a ?crit?: > On Wed, 11 Oct 2017, Beno?t Minisini via Gambas-user wrote: >> Hi, >> >> I have just committed git support in 'master'. >> >> The whole IDE version control management has been redesigned. Now version >> control is managed through a sub-menu in the 'Project' menu, or an >> equivalent menu button in the main toolbar. >> >> Everything is done except conflict management. I must understand how it >> works in git, and I'd like to have a file diff tool directly in the IDE, but >> it's a big job. >> > > Just in case you forgot, there is already the Patch class in the IDE which I > wrote for the Patch dialogs. It's not much and they don't deal with conflict > files but they do parse "diff -u" patches like the ones "git diff" produces. > > Regards, > Tobi > Yes, I know. But I'd like to have something like 'meld', that shows the differences side by side with colors, allowing to apply any difference from one side to the other. Maybe should I be lazy, and tell the user to install 'meld', 'kdiff3' or any similar tool, and configure the IDE so that it uses it to merge conflicts... -- Beno?t Minisini From gambas at ...1... Thu Oct 12 00:16:51 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 00:16:51 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> Message-ID: Le 11/10/2017 ? 23:56, Beno?t Minisini via Gambas-user a ?crit?: > Hi, > > I have just committed git support in 'master'. > > The whole IDE version control management has been redesigned. Now > version control is managed through a sub-menu in the 'Project' menu, or > an equivalent menu button in the main toolbar. > > Everything is done except conflict management. I must understand how it > works in git, and I'd like to have a file diff tool directly in the IDE, > but it's a big job. > > Please report any problem or suggestion about it, especially in the git > part. > > Like most of you, I am a git newbie, and this is very fresh code, so be > careful with your projects! > > Enjoy. > Other things that still must be done: - The ability to create a project from a remote repository. - The ability to create a repository from an existing project. -- Beno?t Minisini From mckaygerhard at ...626... Thu Oct 12 02:09:14 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Wed, 11 Oct 2017 20:09:14 -0400 Subject: [Gambas-user] New git support in the IDE In-Reply-To: References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> Message-ID: like benoit said, i prefer meld too, and also this git support are using library dependency or only command line more dependences? no please! users already must have git command also a library? the hability to create repository can be complicate, a proyecto from remote are more viable Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-11 18:16 GMT-04:00 Beno?t Minisini via Gambas-user < gambas-user at lists.sourceforge.net>: > Le 11/10/2017 ? 23:56, Beno?t Minisini via Gambas-user a ?crit : > >> Hi, >> >> I have just committed git support in 'master'. >> >> The whole IDE version control management has been redesigned. Now version >> control is managed through a sub-menu in the 'Project' menu, or an >> equivalent menu button in the main toolbar. >> >> Everything is done except conflict management. I must understand how it >> works in git, and I'd like to have a file diff tool directly in the IDE, >> but it's a big job. >> >> Please report any problem or suggestion about it, especially in the git >> part. >> >> Like most of you, I am a git newbie, and this is very fresh code, so be >> careful with your projects! >> >> Enjoy. >> >> > Other things that still must be done: > > - The ability to create a project from a remote repository. > > - The ability to create a repository from an existing project. > > > -- > Beno?t Minisini > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From mckaygerhard at ...626... Thu Oct 12 02:10:00 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Wed, 11 Oct 2017 20:10:00 -0400 Subject: [Gambas-user] New git support in the IDE In-Reply-To: References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> Message-ID: like benoit i prefer meld too also this git support are by commands or by using a library interface? (more dependences? no please)) Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-11 18:16 GMT-04:00 Beno?t Minisini via Gambas-user < gambas-user at lists.sourceforge.net>: > Le 11/10/2017 ? 23:56, Beno?t Minisini via Gambas-user a ?crit : > >> Hi, >> >> I have just committed git support in 'master'. >> >> The whole IDE version control management has been redesigned. Now version >> control is managed through a sub-menu in the 'Project' menu, or an >> equivalent menu button in the main toolbar. >> >> Everything is done except conflict management. I must understand how it >> works in git, and I'd like to have a file diff tool directly in the IDE, >> but it's a big job. >> >> Please report any problem or suggestion about it, especially in the git >> part. >> >> Like most of you, I am a git newbie, and this is very fresh code, so be >> careful with your projects! >> >> Enjoy. >> >> > Other things that still must be done: > > - The ability to create a project from a remote repository. > > - The ability to create a repository from an existing project. > > > -- > Beno?t Minisini > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Thu Oct 12 02:33:12 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 02:33:12 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> Message-ID: Le 12/10/2017 ? 02:10, PICCORO McKAY Lenz a ?crit?: > like benoit i prefer meld too > > also this git support are by commands or by using a library interface? > (more dependences? no please)) > > Lenz McKAY Gerardo (PICCORO) > http://qgqlochekone.blogspot.com > It is based on the git command-line. But it would based on the git library, it would change nothing to the dependencies, as git is based on the git library too. Logical... -- Beno?t Minisini From gambas at ...1... Thu Oct 12 03:01:02 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 03:01:02 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile In-Reply-To: References: Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile Date?: Thu, 12 Oct 2017 00:59:05 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1198&from=L21haW4- Tony MOREHEN reported a new bug. Summary ------- In Commit 962adee5, gambas IDE won't compile Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description ----------- The compiler reports that gb.desktop is missing. Compilation does proceed without error if, in gb.desktop, Main.module function main, you comment out: Desktop.SendMail(Null,,,,, "/home/benoit/Translate.module, comma") System information ------------------ [System] Gambas=3.9.90 r8018 OperatingSystem=Linux Kernel=4.8.15-1-MANJARO Architecture=x86_64 Distribution=Manjaro Linux Desktop=XFCE Theme=Gtk Language=en_CA.utf8 Memory=3947M [Libraries] Cairo=libcairo.so.2.11400.8 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.9 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.1002.0 GTK+2=libgtk-x11-2.0.so.0.2400.31 GTK+3=libgtk-3.so.0.2200.5 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.66.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.7.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=xfce DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xfce GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GTK2_RC_FILES=/.gtkrc-2.0 GTK_MODULES=canberra-gtk-module HOME= LANG=en_CA.utf8 LC_ADDRESS=en_CA.UTF-8 LC_IDENTIFICATION=en_CA.UTF-8 LC_MEASUREMENT=en_CA.UTF-8 LC_MONETARY=en_CA.UTF-8 LC_NAME=en_CA.UTF-8 LC_NUMERIC=en_CA.UTF-8 LC_PAPER=en_CA.UTF-8 LC_TELEPHONE=en_CA.UTF-8 LC_TIME=en_CA.UTF-8 LOGNAME= MAIL=/var/spool/mail/ MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl PWD= QT_QPA_PLATFORMTHEME=qt5ct SAL_USE_VCLPLUGIN=gtk SESSION_MANAGER=local/:@/tmp/.ICE-unix/9931,unix/:/tmp/.ICE-unix/9931 SHELL=/bin/bash SHLVL=2 SSH_AGENT_PID=9936 SSH_AUTH_SOCK=/tmp/ssh-bUdChQqs4Zo0/agent.9935 TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/local/share:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=xfce XDG_SESSION_ID=c4 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session1 XDG_SESSION_TYPE=x11 XDG_VTNR=7 _=/usr/bin/gambas3 From gambas at ...1... Thu Oct 12 03:30:30 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 03:30:30 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile In-Reply-To: <59dec4b7.0cc1df0a.e5373.cec6SMTPIN_ADDED_BROKEN@...2392...> References: <59dec4b7.0cc1df0a.e5373.cec6SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <750e7474-d0d4-29d6-bf27-8fac09ee9e70@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile Date?: Thu, 12 Oct 2017 01:26:14 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1198&from=L21haW4- Comment #1 by Beno?t MINISINI: The problem is in gb.form.dialog, not in gb.desktop. Does last commit fix the problem? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From mckaygerhard at ...626... Thu Oct 12 03:48:05 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Wed, 11 Oct 2017 21:48:05 -0400 Subject: [Gambas-user] New git support in the IDE In-Reply-To: References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> Message-ID: git its based on the git library when compiled i donot see that in my requirements for git compilation?!! Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-11 20:33 GMT-04:00 Beno?t Minisini : > Le 12/10/2017 ? 02:10, PICCORO McKAY Lenz a ?crit : > >> like benoit i prefer meld too >> >> also this git support are by commands or by using a library interface? >> (more dependences? no please)) >> >> Lenz McKAY Gerardo (PICCORO) >> http://qgqlochekone.blogspot.com >> >> > It is based on the git command-line. But it would based on the git > library, it would change nothing to the dependencies, as git is based on > the git library too. > > Logical... > > -- > Beno?t Minisini > From chrisml at ...3340... Thu Oct 12 08:32:18 2017 From: chrisml at ...3340... (Christof Thalhofer) Date: Thu, 12 Oct 2017 08:32:18 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> Message-ID: Am 12.10.2017 um 00:15 schrieb Beno?t Minisini via Gambas-user: > Maybe should I be lazy, and tell the user to install 'meld', 'kdiff3' or > any similar tool, and configure the IDE so that it uses it to merge > conflicts... Yes I think you should. I think its hard work to write "just another diff tool". I also think you your energy is better wasted on other things. ;-) Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From gambas at ...1... Thu Oct 12 12:42:02 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 12:42:02 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile In-Reply-To: <59def986.0d471c0a.bf3ea.1f82SMTPIN_ADDED_BROKEN@...2392...> References: <59def986.0d471c0a.bf3ea.1f82SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <48685847-ce22-6ebb-4691-9f7fa2525447@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile Date?: Thu, 12 Oct 2017 05:11:33 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1198&from=L21haW4- Comment #2 by Tony MOREHEN: The latest commit fixes it. Sorry about miss directing you. When I was trying to identify the problem, I loaded gb.desktop into gambas, commented out that line, and then did a make on gb.desktop. The compile then worked. I of course thought that the commenting out of that line was the fix, when it really was the make. Tony MOREHEN changed the state of the bug to: Fixed. From gambas at ...1... Thu Oct 12 12:45:45 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 12:45:45 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> Message-ID: <6742dafa-04a9-ffd2-f3a3-14a8915f7f57@...1...> Le 12/10/2017 ? 08:32, Christof Thalhofer a ?crit?: > Am 12.10.2017 um 00:15 schrieb Beno?t Minisini via Gambas-user: > >> Maybe should I be lazy, and tell the user to install 'meld', 'kdiff3' or >> any similar tool, and configure the IDE so that it uses it to merge >> conflicts... > > Yes I think you should. I think its hard work to write "just another > diff tool". I also think you your energy is better wasted on other things. > > ;-) > > > Alles Gute > > Christof Thalhofer > An easier possibility is doing the same at gitliab : just take the conflicted file annotated by git, add colors on conflicted parts, and put buttons on each part to select "our changes" or "their changes". I will see... -- Beno?t Minisini From gambas at ...1... Thu Oct 12 12:57:06 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 12:57:06 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile In-Reply-To: <59df4995.81acdf0a.115a6.8b4cSMTPIN_ADDED_BROKEN@...2392...> References: <59df4995.81acdf0a.115a6.8b4cSMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1198: In Commit 962adee5, gambas IDE won't compile Date?: Thu, 12 Oct 2017 10:53:08 GMT De?: bugtracker at ...3416... Pour?: tmorehen at ...3634..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1198&from=L21haW4- Comment #3 by Beno?t MINISINI: No problem, I was warned about the failed compilation by the gambas daily ppa too, and the problem was clear from their compilation log. From gambas at ...1... Thu Oct 12 13:07:11 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 13:07:11 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #998: Bug in ToolBar In-Reply-To: <59df4cae.ce7f1c0a.60ebe.bde6SMTPIN_ADDED_BROKEN@...2392...> References: <59df4cae.ce7f1c0a.60ebe.bde6SMTPIN_ADDED_BROKEN@...2392...> Message-ID: <040114d7-f8cc-40e1-296a-8ec4ec6afa57@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #998: Bug in ToolBar Date?: Thu, 12 Oct 2017 11:06:22 GMT De?: bugtracker at ...3416... Pour?: g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.998&from=L21haW4- Comment #4 by Beno?t MINISINI: No news for a year, I close the issue. Beno?t MINISINI changed the state of the bug to: Abandoned. From gambas at ...1... Thu Oct 12 13:07:11 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 13:07:11 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #831: .WebSetting.Cache.Path say some strange things and not work. In-Reply-To: <59df4c70.833f1c0a.1c159.d750SMTPIN_ADDED_BROKEN@...2392...> References: <59df4c70.833f1c0a.1c159.d750SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #831: .WebSetting.Cache.Path say some strange things and not work. Date?: Thu, 12 Oct 2017 11:05:19 GMT De?: bugtracker at ...3416... Pour?: g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.831&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From gambas at ...1... Thu Oct 12 13:07:10 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 13:07:10 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #716: loss of mouse functionalities In-Reply-To: <59df4bc0.87841c0a.476eb.591bSMTPIN_ADDED_BROKEN@...2392...> References: <59df4bc0.87841c0a.476eb.591bSMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #716: loss of mouse functionalities Date?: Thu, 12 Oct 2017 11:02:23 GMT De?: bugtracker at ...3416... Pour?: author.ilmi at ...626..., Karl.Reinl at ...2345..., jussi.lahtinen at ...1081....626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.716&from=L21haW4- Comment #8 by Beno?t MINISINI: No news for a year, I close the issue. Beno?t MINISINI changed the state of the bug to: Abandoned. From gambas at ...1... Thu Oct 12 13:07:11 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 13:07:11 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1010: Custom runtime libraries not found In-Reply-To: <59df4cd8.d50b1c0a.99a75.89cdSMTPIN_ADDED_BROKEN@...2392...> References: <59df4cd8.d50b1c0a.99a75.89cdSMTPIN_ADDED_BROKEN@...2392...> Message-ID: <4a59664d-b860-e342-c9b5-90c30c9070a6@...1...> -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1010: Custom runtime libraries not found Date?: Thu, 12 Oct 2017 11:07:03 GMT De?: bugtracker at ...3416... Pour?: uwekel at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1010&from=L21haW4- Comment #2 by Beno?t MINISINI: No news for a year, I close the issue Beno?t MINISINI changed the state of the bug to: Abandoned. From gambas at ...1... Thu Oct 12 13:16:55 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 13:16:55 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request In-Reply-To: <59df4e1f.129bdf0a.1f519.da90SMTPIN_ADDED_BROKEN@...2392...> References: <59df4e1f.129bdf0a.1f519.da90SMTPIN_ADDED_BROKEN@...2392...> Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1193: DataSource.Table doesn't accept "SELECT "request Date?: Thu, 12 Oct 2017 11:12:31 GMT De?: bugtracker at ...3416... Pour?: pavelasb at ...626..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1193&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From chrisml at ...3340... Thu Oct 12 13:42:38 2017 From: chrisml at ...3340... (Christof Thalhofer) Date: Thu, 12 Oct 2017 13:42:38 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: <6742dafa-04a9-ffd2-f3a3-14a8915f7f57@...1...> References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> <6742dafa-04a9-ffd2-f3a3-14a8915f7f57@...1...> Message-ID: Am 12.10.2017 um 12:45 schrieb Beno?t Minisini: > I will see... Just as an annotation. I myself prefer using Git via commandline. Because since I started using Git for some source code and then became familiar with it I found a lot of other possibilities to work with Git: My personal dotfiles on my computers, a bunch of script files on servers, the /etc directory on different servers, a couple of languages I use to program and so on ... For that I use Guake dropdown terminal, Tig and some shortcuts to the different directories I am working in, so that on each computer and each program I work with (different Editors, different IDEs) I have the same interface and the same couple of keystrokes to do versioning in Git, what I do all the time the whole day long. For me a special interface for Git in any IDE/Editor is wasted energy as I never will use it as long as it is not faster and more convenient than that I am using on all programs. And I doubt there ever will be one as GUI. A common criticism to Git is, that there is no real sufficient GUI for it, but I think the real reason for that is, that if one works with Git in different circumstances, commandline will always be the fastest and most flexible option. Alles Gute Christof Thalhofer P.S.: Sorry I sent this first to your address, Thunderbird !"?$R%# -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From gambas at ...1... Thu Oct 12 13:58:31 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 12 Oct 2017 13:58:31 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> <6742dafa-04a9-ffd2-f3a3-14a8915f7f57@...1...> Message-ID: <2a9446b8-cf84-e7d1-b521-f2c7875e5915@...1...> Le 12/10/2017 ? 13:42, Christof Thalhofer a ?crit?: > Am 12.10.2017 um 12:45 schrieb Beno?t Minisini: > >> I will see... > > Just as an annotation. I myself prefer using Git via commandline. > > Because since I started using Git for some source code and then became > familiar with it I found a lot of other possibilities to work with Git: > > My personal dotfiles on my computers, a bunch of script files on > servers, the /etc directory on different servers, a couple of languages > I use to program and so on ... > > For that I use Guake dropdown terminal, Tig and some shortcuts to the > different directories I am working in, so that on each computer and each > program I work with (different Editors, different IDEs) I have the same > interface and the same couple of keystrokes to do versioning in Git, > what I do all the time the whole day long. > > For me a special interface for Git in any IDE/Editor is wasted energy as > I never will use it as long as it is not faster and more convenient than > that I am using on all programs. And I doubt there ever will be one as GUI. > > A common criticism to Git is, that there is no real sufficient GUI for > it, but I think the real reason for that is, that if one works with Git > in different circumstances, commandline will always be the fastest and > most flexible option. > > > Alles Gute > > Christof Thalhofer > > P.S.: Sorry I sent this first to your address, Thunderbird !"?$R%# > I agree, but I think some people may prefer the IDE interface if they are not very easy with git. -- Beno?t Minisini From mckaygerhard at ...626... Thu Oct 12 14:20:49 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Thu, 12 Oct 2017 08:20:49 -0400 Subject: [Gambas-user] New git support in the IDE In-Reply-To: <2a9446b8-cf84-e7d1-b521-f2c7875e5915@...1...> References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> <6742dafa-04a9-ffd2-f3a3-14a8915f7f57@...1...> <2a9446b8-cf84-e7d1-b521-f2c7875e5915@...1...> Message-ID: 2017-10-12 7:58 GMT-04:00 Beno?t Minisini via Gambas-user < gambas-user at lists.sourceforge.net>: > I agree, but I think some people may prefer the IDE interface if they are > not very easy with git. reading and writting are the pilar of civilizations to lear we must read people must read to use git people must use command line, so must practice.. linux its for smart people, and smart people its the core of civilizations seems pretty logic > > > -- > Beno?t Minisini > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From chrisml at ...3340... Thu Oct 12 15:31:34 2017 From: chrisml at ...3340... (Christof Thalhofer) Date: Thu, 12 Oct 2017 15:31:34 +0200 Subject: [Gambas-user] New git support in the IDE In-Reply-To: <2a9446b8-cf84-e7d1-b521-f2c7875e5915@...1...> References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> <6742dafa-04a9-ffd2-f3a3-14a8915f7f57@...1...> <2a9446b8-cf84-e7d1-b521-f2c7875e5915@...1...> Message-ID: <4d009184-a3aa-05d2-32f8-d0695c425bd6@...3340...> Am 12.10.2017 um 13:58 schrieb Beno?t Minisini: > I agree, but I think some people may prefer the IDE interface if they > are not very easy with git. Ok, but then ... there are GUI interfaces for Git. Why not use them? For example, the IDE could execute gitg ~/path/to/project There a newbie can do all. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From mckaygerhard at ...626... Thu Oct 12 22:02:04 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Thu, 12 Oct 2017 16:02:04 -0400 Subject: [Gambas-user] New git support in the IDE In-Reply-To: <4d009184-a3aa-05d2-32f8-d0695c425bd6@...3340...> References: <87c46fca-789e-408b-b96c-b8a37181cb25@...1...> <20171011220929.GF797@...3691...> <6742dafa-04a9-ffd2-f3a3-14a8915f7f57@...1...> <2a9446b8-cf84-e7d1-b521-f2c7875e5915@...1...> <4d009184-a3aa-05d2-32f8-d0695c425bd6@...3340...> Message-ID: 2017-10-12 9:31 GMT-04:00 Christof Thalhofer : > > I agree, but I think some people may prefer the IDE interface if they > > are not very easy with git. > Ok, but then ... there are GUI interfaces for Git. Why not use them? > all the linux gui git interfaces are very uncomplete... the most important step the push are missing in almost mayority of those gui interfaces > There a newbie can do all. > Ok i not repeat that i wrote in the previous mail.. i was a newbie some time ago.. but using only cicks and guis's the only result its a windoze user.. uggg.. no men, command line and some ide features.. for the rest, newbies must READ! and PRACTICE! > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From gambas at ...1... Sat Oct 14 16:17:22 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sat, 14 Oct 2017 16:17:22 +0200 Subject: [Gambas-user] Fwd: [Gambas Bug Tracker] Bug #1199: Problems with USB/serial port in latest daily version. In-Reply-To: References: Message-ID: -------- Message transf?r? -------- Sujet?: [Gambas Bug Tracker] Bug #1199: Problems with USB/serial port in latest daily version. Date?: Sat, 14 Oct 2017 14:14:43 GMT De?: bugtracker at ...3416... Pour?: carlopanara at ...69..., g4mba5 at ...626... http://gambaswiki.org/bugtracker/edit?object=BUG.1199&from=L21haW4- Carlo PANARA reported a new bug. Summary ------- Problems with USB/serial port in latest daily version. Type : Bug Priority : Medium Gambas version : 3.10 Product : Unknown Description ----------- In the latest Daily version I encounter a problem with the USB / Serial. When I try to read or write from USB/serial port, for example write with: Print #SerialPort1, txtSend; or read with: Read #SerialPort1, b I receive a write or read error. No problem with 3.10.0 bye [System] Gambas=3.10.90 OperatingSystem=Linux Kernel=4.10.0-37-generic Architecture=x86_64 Distribution=elementary OS 0.4.1 Loki Desktop=PANTHEON Theme=Gtk Language=it_IT.UTF-8 Memory=3553M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-m7FJ8BGB97,guid=c7bd109a7b4ec22c346bf9df59e1affb DEFAULTS_PATH=/usr/share/gconf/pantheon.default.path DESKTOP_SESSION=pantheon DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=pantheon GDM_LANG=it GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=6475 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GSETTINGS_SCHEMA_DIR=/data GTK_CSD=1 GTK_MODULES=pantheon-filechooser-module:gail:atk-bridge HOME= LANG=it_IT.UTF-8 LANGUAGE=it LC_ADDRESS=it_IT.UTF-8 LC_IDENTIFICATION=it_IT.UTF-8 LC_MEASUREMENT=it_IT.UTF-8 LC_MONETARY=it_IT.UTF-8 LC_NAME=it_IT.UTF-8 LC_NUMERIC=it_IT.UTF-8 LC_PAPER=it_IT.UTF-8 LC_TELEPHONE=it_IT.UTF-8 LC_TIME=it_IT.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/pantheon.mandatory.path PAPERSIZE=a4 PATH=/bin:/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT_ACCESSIBILITY=1 QT_IM_MODULE=ibus QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_STYLE_OVERRIDE=gtk SESSION_MANAGER=local/:@/tmp/.ICE-unix/1818,unix/:/tmp/.ICE-unix/1818 SHELL=/bin/bash SHLVL=0 SSH_AGENT_PID=1893 SSH_AUTH_SOCK=/tmp/ssh-lpV4vf1hEvuA/agent.1818 TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-pantheon:/etc/xdg XDG_CURRENT_DESKTOP=Pantheon XDG_DATA_DIRS=/usr/share/pantheon:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=pantheon XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS=@...3498...=ibus From mckaygerhard at ...626... Sun Oct 15 20:52:43 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Sun, 15 Oct 2017 14:52:43 -0400 Subject: [Gambas-user] module/comp how to made like gambas normal Message-ID: i want to make a component that their rutines can be uses directly and not "module.subrutine(arg)" i like th use as "rutine(arg)" hoq cab i made that? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com From taboege at ...626... Sun Oct 15 21:00:10 2017 From: taboege at ...626... (Tobias Boege) Date: Sun, 15 Oct 2017 21:00:10 +0200 Subject: [Gambas-user] module/comp how to made like gambas normal In-Reply-To: References: Message-ID: <20171015190010.GT797@...3691...> On Sun, 15 Oct 2017, PICCORO McKAY Lenz wrote: > i want to make a component that their rutines can be uses directly and not > "module.subrutine(arg)" i like th use as "rutine(arg)" > > hoq cab i made that? > AFAIK real routines have to be built into the compiler so you can't add them with just a component. However, you can make a module, say MyFunc, and give it the special _call method [1]. The you can use the module name like a function, i.e. call MyFunc(), and it will call the _call() method. Regards, Tobi [1] http://gambaswiki.org/wiki/cat/special -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From gambas at ...1... Sun Oct 15 21:51:34 2017 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sun, 15 Oct 2017 21:51:34 +0200 Subject: [Gambas-user] Gambas mailing-list leaving SourceForge! Message-ID: <72e92daf-701a-0de3-ea01-bbf321fe8dd7@...1...> Hi, Thanks to Christof Thalhofer and Hostsharing.net, we have now a dedicated mailing-list server for Gambas, and so we can leave SourceForge mailing-list. Since a few weeks, SourceForge prevents me from accessing the list of subscribers, so people have to manually subscribe to the new mailing-list one by one. The server is hosted at: http://lists.gambas-basic.org There is one mailing-list at the moment, named "User". Additional mailing-list will be able to be added freely according to the needs. The Gitlab Gambas repository will now be able to send all commits to a new "Commit" mailing-list. The Bug Tracker will send its mails to the "User" mailing-lists, as everybody may be interested in bug fixes. Once that done, the SourceForge mailing-list will be deactivated. I will update the website as soon as possible. The website is now the only thing hosted by SourceForge. If you have any questions, please ask. Best regards, -- Beno?t Minisini From mckaygerhard at ...626... Mon Oct 16 04:04:28 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Sun, 15 Oct 2017 22:04:28 -0400 Subject: [Gambas-user] module/comp how to made like gambas normal In-Reply-To: <20171015190010.GT797@...3691...> References: <20171015190010.GT797@...3691...> Message-ID: interesting.. so for each funtion a module.. umm ok thanks but that info must also be in the wiki... Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-15 15:00 GMT-04:00 Tobias Boege : > On Sun, 15 Oct 2017, PICCORO McKAY Lenz wrote: > > i want to make a component that their rutines can be uses directly and > not > > "module.subrutine(arg)" i like th use as "rutine(arg)" > > > > hoq cab i made that? > > > > AFAIK real routines have to be built into the compiler so you can't add > them with just a component. However, you can make a module, say MyFunc, > and give it the special _call method [1]. The you can use the module name > like a function, i.e. call MyFunc(), and it will call the _call() method. > > Regards, > Tobi > > [1] http://gambaswiki.org/wiki/cat/special > > -- > "There's an old saying: Don't change anything... ever!" -- Mr. Monk > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From chrisml at ...3340... Mon Oct 16 08:55:53 2017 From: chrisml at ...3340... (Christof Thalhofer) Date: Mon, 16 Oct 2017 08:55:53 +0200 Subject: [Gambas-user] module/comp how to made like gambas normal In-Reply-To: References: <20171015190010.GT797@...3691...> Message-ID: <85485d0c-c445-327e-5623-7d57d16bd215@...3340...> Am 16.10.2017 um 04:04 schrieb PICCORO McKAY Lenz: > interesting.. so for each funtion a module.. umm ok thanks > > but that info must also be in the wiki... Please subscribe to: https://lists.gambas-basic.org/listinfo/user You are posting to the old Mailinglist. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From bagonergi at ...626... Mon Oct 16 10:28:52 2017 From: bagonergi at ...626... (Gianluigi) Date: Mon, 16 Oct 2017 10:28:52 +0200 Subject: [Gambas-user] Digest mode, yes or not? Message-ID: Would you like to receive list mail batched in a daily digest? Can anyone explain the difference between no and yes to this question? If I answer yes, do I not receive individual mail anymore? Do I just have one digest and that's enough? Or do I get individual mail and in addition a summary? Regards Gianluigi From chrisml at ...3340... Mon Oct 16 11:05:50 2017 From: chrisml at ...3340... (Christof Thalhofer) Date: Mon, 16 Oct 2017 11:05:50 +0200 Subject: [Gambas-user] Digest mode, yes or not? In-Reply-To: References: Message-ID: <123b8f94-6780-fded-38af-70a22ebad6a3@...3340...> Am 16.10.2017 um 10:28 schrieb Gianluigi: > Would you like to receive list mail batched in a daily digest? Better say no. > Can anyone explain the difference between no and yes to this question? > If I answer yes, do I not receive individual mail anymore? > Do I just have one digest and that's enough? > Or do I get individual mail and in addition a summary? http://www.list.org/mailman-member/node27.html You get all mails of a day grouped together in one email. I don't think, this is what you want. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From bagonergi at ...626... Mon Oct 16 12:20:58 2017 From: bagonergi at ...626... (Gianluigi) Date: Mon, 16 Oct 2017 12:20:58 +0200 Subject: [Gambas-user] Digest mode, yes or not? In-Reply-To: <123b8f94-6780-fded-38af-70a22ebad6a3@...3340...> References: <123b8f94-6780-fded-38af-70a22ebad6a3@...3340...> Message-ID: Hi Christof, >I don't think, this is what you want. Yes and in fact I was wrong :-) Now I'm going to change the settings, thanks. Regards Gianluigi 2017-10-16 11:05 GMT+02:00 Christof Thalhofer : > Am 16.10.2017 um 10:28 schrieb Gianluigi: > > Would you like to receive list mail batched in a daily digest? > > Better say no. > > > Can anyone explain the difference between no and yes to this question? > > If I answer yes, do I not receive individual mail anymore? > > Do I just have one digest and that's enough? > > Or do I get individual mail and in addition a summary? > > http://www.list.org/mailman-member/node27.html > > You get all mails of a day grouped together in one email. I don't think, > this is what you want. > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From mckaygerhard at ...626... Mon Oct 16 12:24:00 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Mon, 16 Oct 2017 06:24:00 -0400 Subject: [Gambas-user] module/comp how to made like gambas normal In-Reply-To: <85485d0c-c445-327e-5623-7d57d16bd215@...3340...> References: <20171015190010.GT797@...3691...> <85485d0c-c445-327e-5623-7d57d16bd215@...3340...> Message-ID: WOW!!!!! awesome Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-16 2:55 GMT-04:00 Christof Thalhofer : > Am 16.10.2017 um 04:04 schrieb PICCORO McKAY Lenz: > > interesting.. so for each funtion a module.. umm ok thanks > > > > but that info must also be in the wiki... > > Please subscribe to: > > https://lists.gambas-basic.org/listinfo/user > You are posting to the old Mailinglist. > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From mckaygerhard at ...626... Mon Oct 16 12:26:08 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Mon, 16 Oct 2017 06:26:08 -0400 Subject: [Gambas-user] archives for new gambas list Message-ID: user archives will be separate/lost on new list? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com From chrisml at ...3340... Mon Oct 16 12:38:33 2017 From: chrisml at ...3340... (Christof Thalhofer) Date: Mon, 16 Oct 2017 12:38:33 +0200 Subject: [Gambas-user] archives for new gambas list In-Reply-To: References: Message-ID: Am 16.10.2017 um 12:26 schrieb PICCORO McKAY Lenz: > user archives will be separate/lost on new list? AFAIK we have no chance to copy the old archives to the new server. But the new archive is here: https://lists.gambas-basic.org/pipermail/user/ Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From mckaygerhard at ...626... Mon Oct 16 20:49:54 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Mon, 16 Oct 2017 14:19:54 -0430 Subject: [Gambas-user] archives for new gambas list In-Reply-To: References: Message-ID: thanks god and aliens that the new archive not have that heavy SF interface.. now loads faster Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-16 6:08 GMT-04:30 Christof Thalhofer : > Am 16.10.2017 um 12:26 schrieb PICCORO McKAY Lenz: > > user archives will be separate/lost on new list? > > AFAIK we have no chance to copy the old archives to the new server. > > But the new archive is here: > https://lists.gambas-basic.org/pipermail/user/ > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From mckaygerhard at ...626... Mon Oct 16 20:51:21 2017 From: mckaygerhard at ...626... (PICCORO McKAY Lenz) Date: Mon, 16 Oct 2017 14:21:21 -0430 Subject: [Gambas-user] Digest mode, yes or not? In-Reply-To: References: Message-ID: for gmail users with conversation mode, must be no, and must configure the setting to delivery each mail as arrives Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-16 3:58 GMT-04:30 Gianluigi : > Would you like to receive list mail batched in a daily digest? > > Can anyone explain the difference between no and yes to this question? > If I answer yes, do I not receive individual mail anymore? > Do I just have one digest and that's enough? > Or do I get individual mail and in addition a summary? > > Regards > Gianluigi > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From mikeB at ...3673... Fri Oct 20 02:03:55 2017 From: mikeB at ...3673... (mikeB) Date: Thu, 19 Oct 2017 18:03:55 -0600 Subject: [Gambas-user] change columnview color Message-ID: <962aae91-e655-bf1b-bbac-29bd0c674f51@...3673...> Greetings, ListView/ ColumnView Is there anyone could point me in the right direction where I could read detailed info to find out about either masking a column "***" instead of the text(password) being exposed OR setting the color, of a particular column, to black so that the text can't be seen? Thanks for any/ all help - have a GREAT day, mikeB From g4mba5 at ...626... Fri Oct 20 02:11:13 2017 From: g4mba5 at ...626... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 20 Oct 2017 02:11:13 +0200 Subject: [Gambas-user] change columnview color In-Reply-To: <962aae91-e655-bf1b-bbac-29bd0c674f51@...3673...> References: <962aae91-e655-bf1b-bbac-29bd0c674f51@...3673...> Message-ID: <10fc712b-bdc0-a7f4-83c3-c2e3fa35a217@...626...> Le 20/10/2017 ? 02:03, mikeB a ?crit?: > Greetings, > ListView/ ColumnView > Is there anyone could point me in the right direction where > I could read detailed info to find out about either masking > a column "***" instead of the text(password) being exposed > OR setting the color, of a particular column, to black so > that the text can't be seen? > > Thanks for any/ all help - have a GREAT day, > mikeB > Please use the new mailing-list at lists.gambas-basic.org. It replaces the current SourceForge mailling-lists. Regards, -- Beno?t Minisini From unaiseek at ...626... Fri Oct 20 10:41:44 2017 From: unaiseek at ...626... (Unaise EK) Date: Fri, 20 Oct 2017 14:11:44 +0530 Subject: [Gambas-user] gambas exe use in android phone Message-ID: how can i work gambas exe file in android flatform (android mobile phones) -- M. Unaise. E.K 9895687604 Librarian, (BLISc, MLIS) JDT Islam Polytechnic College, Vellimadukunnu. Sent with Mailtrack From gbs00-lists at h08.hostsharing.net Thu Oct 5 11:39:06 2017 From: gbs00-lists at h08.hostsharing.net (User for Mailinglists) Date: Thu, 5 Oct 2017 11:39:06 +0200 (CEST) Subject: [Gambas-User] test Message-ID: <20171005093906.CABCBC42B1@h08.hostsharing.net> test From gbs00-lists at h08.hostsharing.net Thu Oct 5 11:44:19 2017 From: gbs00-lists at h08.hostsharing.net (User for Mailinglists) Date: Thu, 5 Oct 2017 11:44:19 +0200 (CEST) Subject: [Gambas-User] test Message-ID: <20171005094419.D018EB0CEC@h08.hostsharing.net> test From gbs00-lists at h08.hostsharing.net Thu Oct 5 11:54:53 2017 From: gbs00-lists at h08.hostsharing.net (User for Mailinglists) Date: Thu, 5 Oct 2017 11:54:53 +0200 (CEST) Subject: [Gambas-User] test Message-ID: <20171005095453.DFF0312FB57@h08.hostsharing.net> test From chrisml at deganius.de Thu Oct 5 14:12:28 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Thu, 5 Oct 2017 14:12:28 +0200 Subject: [Gambas-User] Test3 Message-ID: <1d7bf0c6-41ce-0f32-08aa-df1f0f9e828a@deganius.de> Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From christof at deganius.de Thu Oct 5 14:12:48 2017 From: christof at deganius.de (Christof Thalhofer) Date: Thu, 5 Oct 2017 14:12:48 +0200 Subject: [Gambas-User] Teste noch mal Message-ID: <28d660eb-f646-3a2a-106a-09f1dc592d1c@deganius.de> Alles Gute, Christof Thalhofer -- Deganius - Kr?uter f?r Pferde Telefon: 09431 (50007) -fax: (50008) christof at deganius.de http://www.deganius.de -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: From chrisml at deganius.de Thu Oct 5 14:17:32 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Thu, 5 Oct 2017 14:17:32 +0200 Subject: [Gambas-User] Test3 In-Reply-To: <1d7bf0c6-41ce-0f32-08aa-df1f0f9e828a@deganius.de> References: <1d7bf0c6-41ce-0f32-08aa-df1f0f9e828a@deganius.de> Message-ID: Am 05.10.2017 um 14:12 schrieb Christof Thalhofer: Blahblubb Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From chrisml at deganius.de Thu Oct 5 14:19:24 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Thu, 5 Oct 2017 14:19:24 +0200 Subject: [Gambas-User] Test3 In-Reply-To: References: <1d7bf0c6-41ce-0f32-08aa-df1f0f9e828a@deganius.de> Message-ID: <3bbc0726-120f-44e3-84b5-53b9a4d3abf4@deganius.de> Am 05.10.2017 um 14:17 schrieb Christof Thalhofer: > Am 05.10.2017 um 14:12 schrieb Christof Thalhofer: > > Blahblubb > > Alles Gute > > Christof Thalhofer Boing Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From christof at deganius.de Thu Oct 5 14:19:59 2017 From: christof at deganius.de (Christof Thalhofer) Date: Thu, 5 Oct 2017 14:19:59 +0200 Subject: [Gambas-User] Test3 In-Reply-To: References: <1d7bf0c6-41ce-0f32-08aa-df1f0f9e828a@deganius.de> Message-ID: <076bd702-8cd0-f7f2-985e-396691086571@deganius.de> Am 05.10.2017 um 14:17 schrieb Christof Thalhofer: > Am 05.10.2017 um 14:12 schrieb Christof Thalhofer: > > Blahblubb Lgrfgrxkgrfgrfdgrkr Alles Gute, Christof Thalhofer -- Deganius - Kr?uter f?r Pferde Telefon: 09431 (50007) -fax: (50008) christof at deganius.de http://www.deganius.de -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: From chrisml at deganius.de Sat Oct 14 14:30:12 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Sat, 14 Oct 2017 14:30:12 +0200 Subject: [Gambas-User] Migration to new ML Message-ID: <6eeb6058-f5ec-c977-2d48-33202b6ca934@deganius.de> Hello Beno?t, we can talk over the new ML, I think? Ok, you have to export the mailadresses from Sourceforge to a textfile and scp this to gbs00-lists. Alternatively insert the adresses here: https://lists.gambas-basic.org/admin/user/members/add If you submit, every member gets a subscription mail. For the Welcome Message I thought, this would be ok: ------------------------------------------------------------------ We ? the Gambas Team ? have changed the server of the Gambas User mailinglist to a new location on the internet. As you are member of the Gambas User Mailinglist this is your subscription to the new mailinglist. If you want to write, please use user at lists.gambas-basic.org as the new address. The old mailinglist at SourceForge will be stopped today. ------------------------------------------------------------------ If you paste this into the form, please keep the blank lines. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From bugtracker at gambaswiki.org Sun Oct 15 22:58:00 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 15 Oct 2017 20:58:00 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1199: Problems with USB/serial port in latest daily version. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1199&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From g4mba5 at gmail.com Sun Oct 15 23:04:07 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sun, 15 Oct 2017 23:04:07 +0200 Subject: [Gambas-user] Test Message-ID: Test ! -- Beno?t Minisini From chrisml at deganius.de Sun Oct 15 23:07:21 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Sun, 15 Oct 2017 23:07:21 +0200 Subject: [Gambas-user] Test In-Reply-To: References: Message-ID: Am 15.10.2017 um 23:04 schrieb Beno?t Minisini: > Test ! Got it, test also ... Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From bugtracker at gambaswiki.org Sun Oct 15 23:19:58 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 15 Oct 2017 21:19:58 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1199: Problems with USB/serial port in latest daily version. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1199&from=L21haW4- Comment #1 by Beno?t MINISINI: Is it better with commit https://gitlab.com/gambas/gambas/commit/afd759b6b3f05af60a30a8949459ae20ec4f9e94 ? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From david.wylie at fastmail.com Mon Oct 16 09:36:27 2017 From: david.wylie at fastmail.com (David Wylie) Date: Mon, 16 Oct 2017 08:36:27 +0100 Subject: [Gambas-user] Custom Language For Form Editor Message-ID: <1508139387.3761827.1139965856.1E724CD2@webmail.messagingengine.com> Are there any instructions on how to add a custom language (for syntax highlighting) to the form editor? If not does anyone have any examples? Thanks, -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugtracker at gambaswiki.org Mon Oct 16 10:03:17 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 16 Oct 2017 08:03:17 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1199: Problems with USB/serial port in latest daily version. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1199&from=L21haW4- Comment #2 by Carlo PANARA: now it is all OK! Thanks Carlo PANARA changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Mon Oct 16 11:50:48 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 16 Oct 2017 09:50:48 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1200: Pointer example not correctly Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1200&from=L21haW4- Zainudin AHMAD reported a new bug. Summary ------- Pointer example not correctly Type : Bug Priority : Medium Gambas version : Unknown Product : Wiki Description ----------- I get "Type Mismatch ..." when run example from wiki : http://gambaswiki.org/wiki/lang/type/pointer System information ------------------ [System] Gambas=3.10.90 f1046c7 (master) OperatingSystem=Linux Kernel=4.10.0-32-generic Architecture=x86_64 Distribution=Ubuntu 16.04.2 LTS Desktop=XFCE Theme=Gtk Language=en_US.UTF-8 Memory=1744M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] CLUTTER_BACKEND=x11 CLUTTER_IM_MODULE= DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-g9uCEv9Q47 DEFAULTS_PATH=/usr/share/gconf/xubuntu.default.path DESKTOP_SESSION=xubuntu DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xubuntu GDM_LANG=en_US GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GNOME_KEYRING_CONTROL= GNOME_KEYRING_PID= GPG_AGENT_INFO=/.gnupg/S.gpg-agent:0:1 GTK_IM_MODULE= GTK_OVERLAY_SCROLLING=0 HOME= IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=en_US.UTF-8 LANGUAGE=en_US LC_ADDRESS=id_ID.UTF-8 LC_IDENTIFICATION=id_ID.UTF-8 LC_MEASUREMENT=id_ID.UTF-8 LC_MONETARY=id_ID.UTF-8 LC_NAME=id_ID.UTF-8 LC_NUMERIC=id_ID.UTF-8 LC_PAPER=id_ID.UTF-8 LC_TELEPHONE=id_ID.UTF-8 LC_TIME=id_ID.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/xubuntu.mandatory.path PATH=/bin:/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD= QT4_IM_MODULE= QT_ACCESSIBILITY=1 QT_IM_MODULE=compose QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_STYLE_OVERRIDE=gtk SESSION=xubuntu SESSIONTYPE= SESSION_MANAGER=local/:@/tmp/.ICE-unix/1269,unix/:/tmp/.ICE-unix/1269 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime UPSTART_EVENTS=started xsession UPSTART_INSTANCE= UPSTART_JOB=startxfce4 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1116 USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-xubuntu:/usr/share/upstart/xdg:/etc/xdg:/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/share/xubuntu:/usr/share/xfce4:/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share:/var/lib/snapd/desktop:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=xubuntu XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS= From bugtracker at gambaswiki.org Mon Oct 16 11:51:06 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 16 Oct 2017 09:51:06 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1200: Pointer example not correctly In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1200&from=L21haW4- Zainudin AHMAD added an attachment: example-Video.mp4 From g4mba5 at gmail.com Mon Oct 16 15:04:05 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Mon, 16 Oct 2017 15:04:05 +0200 Subject: [Gambas-user] Custom Language For Form Editor In-Reply-To: <1508139387.3761827.1139965856.1E724CD2@webmail.messagingengine.com> References: <1508139387.3761827.1139965856.1E724CD2@webmail.messagingengine.com> Message-ID: Le 16/10/2017 ? 09:36, David Wylie a ?crit?: > Are there any instructions on how to add a custom language (for syntax > highlighting) to the form editor? If not does anyone have any examples? > > Thanks, > > The highlighting is handled by the gb.eval.highlight component (the name of that component is not very well chosen by the way). What kind of highlighting do you want to add? -- Beno?t Minisini From bugtracker at gambaswiki.org Mon Oct 16 15:04:24 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 16 Oct 2017 13:04:24 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1199: Problems with USB/serial port in latest daily version. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1199&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Mon Oct 16 15:07:46 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 16 Oct 2017 13:07:46 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1200: Pointer example not correctly In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1200&from=L21haW4- Comment #1 by Beno?t MINISINI: Yes, the example uses a deprecated syntax that does not work anymore. If you want to do to access the memory with the WRITE instruction, you have to create a memory stream with the OPEN MEMORY instruction. Otherwise you can use the Bool@, Int@, String at ... functions. Beno?t MINISINI changed the state of the bug to: Accepted. From david.wylie at fastmail.com Mon Oct 16 15:15:50 2017 From: david.wylie at fastmail.com (David Wylie) Date: Mon, 16 Oct 2017 14:15:50 +0100 Subject: [Gambas-user] Custom Language For Form Editor In-Reply-To: References: <1508139387.3761827.1139965856.1E724CD2@webmail.messagingengine.com> Message-ID: <1508159750.777727.1140277528.1D7CD69C@webmail.messagingengine.com> Well, initially I have an internal scripting language (of no interest to anyone except me and a few others, at most a dozen or so keywords), but at some point I would also like to add Lua and eventually Python if neither have already been done. -- David Wylie david.wylie at fastmail.com On Mon, 16 Oct 2017, at 14:04, Beno?t Minisini wrote: > Le 16/10/2017 ? 09:36, David Wylie a ?crit?: > > Are there any instructions on how to add a custom language (for syntax > > highlighting) to the form editor? If not does anyone have any examples? > > > > Thanks, > > > > > > The highlighting is handled by the gb.eval.highlight component (the name > of that component is not very well chosen by the way). > > What kind of highlighting do you want to add? > > -- > Beno?t Minisini > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net From rwe-sse at osnanet.de Tue Oct 17 08:19:46 2017 From: rwe-sse at osnanet.de (Rolf-Werner Eilert) Date: Tue, 17 Oct 2017 08:19:46 +0200 Subject: [Gambas-user] Test mail only Message-ID: <59E5A102.9000603@osnanet.de> This is just a test mail to see if I receive mail from the new list. Sorry for the noise... Rolf From vuott at yahoo.it Tue Oct 17 09:00:58 2017 From: vuott at yahoo.it (Vuott) Date: Tue, 17 Oct 2017 07:00:58 +0000 (UTC) Subject: [Gambas-user] R: Test mail only References: <884355546.306067.1508223658623.ref@mail.yahoo.com> Message-ID: <884355546.306067.1508223658623@mail.yahoo.com> Hello, ...it works. -------------------------------------------- Mar 17/10/17, Rolf-Werner Eilert ha scritto: Oggetto: [Gambas-user] Test mail only A: user at lists.gambas-basic.org Data: Marted? 17 ottobre 2017, 08:19 This is just a test mail to see if I receive mail from the new list. Sorry for the noise... Rolf -------------------------------------------------- This is the Gambas Mailing List https://lists.gambas-basic.org/listinfo/user Hosted by https://www.hostsharing.net From mail.gambaspi at gmail.com Tue Oct 17 10:00:35 2017 From: mail.gambaspi at gmail.com (Gambaspi) Date: Tue, 17 Oct 2017 15:00:35 +0700 Subject: [Gambas-user] Test mail only In-Reply-To: <59E5A102.9000603@osnanet.de> References: <59E5A102.9000603@osnanet.de> Message-ID: why I don't get vuott reply : https://lists.gambas-basic.org/pipermail/user/2017-October/000022.html On Tue, Oct 17, 2017 at 1:19 PM, Rolf-Werner Eilert wrote: > This is just a test mail to see if I receive mail from the new list. > > Sorry for the noise... > > Rolf > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mail.gambaspi at gmail.com Tue Oct 17 10:10:16 2017 From: mail.gambaspi at gmail.com (Gambaspi) Date: Tue, 17 Oct 2017 15:10:16 +0700 Subject: [Gambas-user] Test mail only In-Reply-To: <59E5A102.9000603@osnanet.de> References: <59E5A102.9000603@osnanet.de> Message-ID: may be any some one can reply me (for make sure you can see my reply) On Tue, Oct 17, 2017 at 1:19 PM, Rolf-Werner Eilert wrote: > This is just a test mail to see if I receive mail from the new list. > > Sorry for the noise... > > Rolf > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chrisml at deganius.de Tue Oct 17 10:24:46 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Tue, 17 Oct 2017 10:24:46 +0200 Subject: [Gambas-user] Test mail only In-Reply-To: References: <59E5A102.9000603@osnanet.de> Message-ID: <187110dd-17f9-5b04-c22c-04c296ff15fd@deganius.de> Am 17.10.2017 um 10:10 schrieb Gambaspi: > may be any some one can reply me (for make sure you can see my reply) I got your mail. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From chrisml at deganius.de Tue Oct 17 10:27:45 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Tue, 17 Oct 2017 10:27:45 +0200 Subject: [Gambas-user] Test mail only In-Reply-To: References: <59E5A102.9000603@osnanet.de> Message-ID: Am 17.10.2017 um 10:00 schrieb Gambaspi: > why I don't get vuott reply : > https://lists.gambas-basic.org/pipermail/user/2017-October/000022.html I got it. Look at your mailsystem. Maybe a spamfilter or such ... ? Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From mail.gambaspi at gmail.com Tue Oct 17 10:49:04 2017 From: mail.gambaspi at gmail.com (Gambaspi) Date: Tue, 17 Oct 2017 15:49:04 +0700 Subject: [Gambas-user] Test mail only In-Reply-To: References: <59E5A102.9000603@osnanet.de> Message-ID: my spam box empty (attac pic), but I got your reply :) On Tue, Oct 17, 2017 at 3:27 PM, Christof Thalhofer wrote: > Am 17.10.2017 um 10:00 schrieb Gambaspi: > > why I don't get vuott reply : > > https://lists.gambas-basic.org/pipermail/user/2017-October/000022.html > > I got it. Look at your mailsystem. Maybe a spamfilter or such ... ? > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: spam-box.png Type: image/png Size: 28518 bytes Desc: not available URL: From bagonergi at gmail.com Tue Oct 17 12:20:19 2017 From: bagonergi at gmail.com (Gianluigi) Date: Tue, 17 Oct 2017 12:20:19 +0200 Subject: [Gambas-user] Test mail only In-Reply-To: References: <59E5A102.9000603@osnanet.de> Message-ID: I also do not see the answer of vuott and do not have spam. It must be gmail boycotting yahoo. Regards Gianluigi 2017-10-17 10:49 GMT+02:00 Gambaspi : > my spam box empty (attac pic), but I got your reply :) > > On Tue, Oct 17, 2017 at 3:27 PM, Christof Thalhofer > wrote: > >> Am 17.10.2017 um 10:00 schrieb Gambaspi: >> > why I don't get vuott reply : >> > https://lists.gambas-basic.org/pipermail/user/2017-October/000022.html >> >> I got it. Look at your mailsystem. Maybe a spamfilter or such ... ? >> >> >> Alles Gute >> >> Christof Thalhofer >> >> -- >> Dies ist keine Signatur >> >> >> >> -------------------------------------------------- >> >> This is the Gambas Mailing List >> https://lists.gambas-basic.org/listinfo/user >> >> Hosted by https://www.hostsharing.net >> >> > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chrisml at deganius.de Tue Oct 17 12:35:11 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Tue, 17 Oct 2017 12:35:11 +0200 Subject: [Gambas-user] Test mail only In-Reply-To: References: <59E5A102.9000603@osnanet.de> Message-ID: <7cb91f96-7e6c-79c5-812a-8074e60b68bd@deganius.de> Am 17.10.2017 um 12:20 schrieb Gianluigi: > I also do not see the answer of vuott and do not have spam. > It must be gmail boycotting yahoo. Strange ... I try again and ask Vuott to answer me. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From chrisml at deganius.de Tue Oct 17 12:36:32 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Tue, 17 Oct 2017 12:36:32 +0200 Subject: [Gambas-user] R: Test mail only In-Reply-To: <884355546.306067.1508223658623@mail.yahoo.com> References: <884355546.306067.1508223658623.ref@mail.yahoo.com> <884355546.306067.1508223658623@mail.yahoo.com> Message-ID: Am 17.10.2017 um 09:00 schrieb Vuott: > Hello, > > ...it works. Seems not for all. Some others did not see your mail. Can you answer again? Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From chrisml at deganius.de Tue Oct 17 12:46:09 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Tue, 17 Oct 2017 12:46:09 +0200 Subject: [Gambas-user] Test mail only In-Reply-To: References: <59E5A102.9000603@osnanet.de> Message-ID: <2ef72273-27b0-a86a-4dbb-9bcfe70001d0@deganius.de> Am 17.10.2017 um 12:20 schrieb Gianluigi: > I also do not see the answer of vuott and do not have spam. > It must be gmail boycotting yahoo. Vuott ist the only one who sets Reply-To to his own address. I changed the config of mailman to strip Reply-To of incoming mail before setting it's own. This is a test. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From mckaygerhard at gmail.com Tue Oct 17 19:42:05 2017 From: mckaygerhard at gmail.com (PICCORO McKAY Lenz) Date: Tue, 17 Oct 2017 13:42:05 -0400 Subject: [Gambas-user] Test mail only In-Reply-To: <59E5A102.9000603@osnanet.de> References: <59E5A102.9000603@osnanet.de> Message-ID: i got all your mails' Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-17 2:19 GMT-04:00 Rolf-Werner Eilert : > This is just a test mail to see if I receive mail from the new list. > > Sorry for the noise... > > Rolf > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net From moviga at mykolab.ch Tue Oct 17 22:28:51 2017 From: moviga at mykolab.ch (Moviga Technologies) Date: Tue, 17 Oct 2017 22:28:51 +0200 Subject: [Gambas-user] Find files without extensions using LIKE Message-ID: Hi! Is it possible to get all files without extensions using Dir()? This does not work: *[^.]* -------------- next part -------------- An HTML attachment was scrubbed... URL: From g4mba5 at gmail.com Tue Oct 17 22:51:50 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Tue, 17 Oct 2017 22:51:50 +0200 Subject: [Gambas-user] Find files without extensions using LIKE In-Reply-To: References: Message-ID: Le 17/10/2017 ? 22:28, Moviga Technologies a ?crit?: > Hi! > > Is it possible to get all files without extensions using Dir()? > > This does not work: *[^.]* > > Of course, as the "*" will match any point in the file name. The native regexp syntax cannot express that, you have to filter the result of Dir() "by hand". As Dir() takes an integer option, I can add a new option that tells to return files that -do not- match the pattern. That way you will be able to do something like: Dir(Directory, "*.*", gb.InvertMatch) But I don't really like that solution. The better would be enhancing the regexp syntax, but it's almost impossible without breaking backward-compatibility. Not simple... -- Beno?t Minisini From bm.530502 at gmail.com Tue Oct 17 22:52:10 2017 From: bm.530502 at gmail.com (Ingo) Date: Tue, 17 Oct 2017 22:52:10 +0200 Subject: [Gambas-user] Find files without extensions using LIKE In-Reply-To: References: Message-ID: <5611680c-d821-86d0-6a9c-2fc84d96c7ac@gmail.com> Am 17.10.2017 um 22:28 schrieb Moviga Technologies: > > Hi! > > Is it possible to get all files without extensions using Dir()? > > This does not work: *[^.]* > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net Hi, maybe this helps: Dim sFile As String ? For Each sFile In Dir(User.Home) ? ??? Print File.BaseName(sFile) ? Next Regards Ingo -------------- next part -------------- An HTML attachment was scrubbed... URL: From taboege at gmail.com Tue Oct 17 23:11:07 2017 From: taboege at gmail.com (Tobias Boege) Date: Tue, 17 Oct 2017 23:11:07 +0200 Subject: [Gambas-user] Find files without extensions using LIKE In-Reply-To: References: Message-ID: <20171017211107.GA21117@highrise.localdomain> On Tue, 17 Oct 2017, Beno?t Minisini wrote: > Le 17/10/2017 ? 22:28, Moviga Technologies a ?crit?: > > Hi! > > > > Is it possible to get all files without extensions using Dir()? > > > > This does not work: *[^.]* > > > > > > Of course, as the "*" will match any point in the file name. > > The native regexp syntax cannot express that, you have to filter the result > of Dir() "by hand". > > As Dir() takes an integer option, I can add a new option that tells to > return files that -do not- match the pattern. That way you will be able to > do something like: > > Dir(Directory, "*.*", gb.InvertMatch) > > But I don't really like that solution. > > The better would be enhancing the regexp syntax, but it's almost impossible > without breaking backward-compatibility. > > Not simple... > Gambas has something that looks like built-in PCRE with the MATCH keyword. You could leave LIKE alone until Gambas 4 by introducing a gb.Match flag, which replaces the invocation of LIKE by MATCH. This looks like a sound way to handle it: both are matching operators, the faster one is the default but you can choose the more powerful one if you need it. In this case, the new flag is much more versatile than a gb.InvertMatch, if that's why you didn't like it. There are other places where this constant could be used, for example the Mode argument to String[].Find(), which already understands gb.Like. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From g4mba5 at gmail.com Tue Oct 17 23:16:52 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Tue, 17 Oct 2017 23:16:52 +0200 Subject: [Gambas-user] Find files without extensions using LIKE In-Reply-To: <20171017211107.GA21117@highrise.localdomain> References: <20171017211107.GA21117@highrise.localdomain> Message-ID: <0f5b0679-5c83-0088-ed25-02e1a9042c7d@gmail.com> Le 17/10/2017 ? 23:11, Tobias Boege a ?crit?: > On Tue, 17 Oct 2017, Beno?t Minisini wrote: >> Le 17/10/2017 ? 22:28, Moviga Technologies a ?crit?: >>> Hi! >>> >>> Is it possible to get all files without extensions using Dir()? >>> >>> This does not work: *[^.]* >>> >>> >> >> Of course, as the "*" will match any point in the file name. >> >> The native regexp syntax cannot express that, you have to filter the result >> of Dir() "by hand". >> >> As Dir() takes an integer option, I can add a new option that tells to >> return files that -do not- match the pattern. That way you will be able to >> do something like: >> >> Dir(Directory, "*.*", gb.InvertMatch) >> >> But I don't really like that solution. >> >> The better would be enhancing the regexp syntax, but it's almost impossible >> without breaking backward-compatibility. >> >> Not simple... >> > > Gambas has something that looks like built-in PCRE with the MATCH keyword. > You could leave LIKE alone until Gambas 4 by introducing a gb.Match flag, > which replaces the invocation of LIKE by MATCH. This looks like a sound > way to handle it: both are matching operators, the faster one is the default > but you can choose the more powerful one if you need it. In this case, > the new flag is much more versatile than a gb.InvertMatch, if that's why > you didn't like it. > > There are other places where this constant could be used, for example the > Mode argument to String[].Find(), which already understands gb.Like. > > Regards, > Tobi > Clever. But I still do not drop the possibility to enhance "LIKE" a bit, as it should take far less memory than pcre, and be faster in simple case. But I never checked! -- Beno?t Minisini From owlbrudder at gmail.com Wed Oct 18 01:21:01 2017 From: owlbrudder at gmail.com (Doug Hutcheson) Date: Wed, 18 Oct 2017 09:21:01 +1000 Subject: [Gambas-user] R: Test mail only In-Reply-To: References: <884355546.306067.1508223658623.ref@mail.yahoo.com> <884355546.306067.1508223658623@mail.yahoo.com> Message-ID: <1508282461.3469.221.camel@gmail.com> I saw your posts and assumed everyone did. I apologise if my tardy reply caused you to worry needlessly.Kind regards,Doug "8-) On Tue, 2017-10-17 at 12:36 +0200, Christof Thalhofer wrote: > Am 17.10.2017 um 09:00 schrieb Vuott: > > Hello, > > > > ...it works. > > Seems not for all. Some others did not see your mail. Can you answer > again? > > > Alles Gute > > Christof Thalhofer > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From chrisml at deganius.de Wed Oct 18 09:13:10 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Wed, 18 Oct 2017 09:13:10 +0200 Subject: [Gambas-user] R: Test mail only In-Reply-To: <1508282461.3469.221.camel@gmail.com> References: <884355546.306067.1508223658623.ref@mail.yahoo.com> <884355546.306067.1508223658623@mail.yahoo.com> <1508282461.3469.221.camel@gmail.com> Message-ID: Am 18.10.2017 um 01:21 schrieb Doug Hutcheson: > I saw your posts and assumed everyone did. I apologise if my tardy reply > caused you to worry needlessly. > Kind regards, No, I think ist was not you that caused my worries, but anyway ... it seems to work now. :-) Thank you :-) Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From chrisml at deganius.de Wed Oct 18 09:30:09 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Wed, 18 Oct 2017 09:30:09 +0200 Subject: [Gambas-user] Size of a result in memory Message-ID: <1f35505d-16b8-35b0-a07f-284402c2f264@deganius.de> Hello, is there a simple way to get the size of a db result in memory? If I use: Object.SizeOf(resultobj) I get a very small count of bytes, way too small for the real size of all the tuples contained by the resultobject. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From moviga at mykolab.ch Wed Oct 18 10:12:25 2017 From: moviga at mykolab.ch (Moviga Technologies) Date: Wed, 18 Oct 2017 10:12:25 +0200 Subject: [Gambas-user] Find files without extensions using LIKE In-Reply-To: <20171017211107.GA21117@highrise.localdomain> References: <20171017211107.GA21117@highrise.localdomain> Message-ID: > Gambas has something that looks like built-in PCRE with the MATCH keyword. > You could leave LIKE alone until Gambas 4 by introducing a gb.Match flag, > which replaces the invocation of LIKE by MATCH. This looks like a sound > way to handle it: both are matching operators, the faster one is the default > but you can choose the more powerful one if you need it. In this case, > the new flag is much more versatile than a gb.InvertMatch, if that's why > you didn't like it. > > There are other places where this constant could be used, for example the > Mode argument to String[].Find(), which already understands gb.Like. > > Regards, > Tobi I like that flag idea as well (I actually thought about it, but somehow forgot to include it in my mail). -------------- next part -------------- An HTML attachment was scrubbed... URL: From moviga at mykolab.ch Wed Oct 18 10:16:50 2017 From: moviga at mykolab.ch (Moviga Technologies) Date: Wed, 18 Oct 2017 10:16:50 +0200 Subject: [Gambas-user] Find files without extensions using LIKE In-Reply-To: <5611680c-d821-86d0-6a9c-2fc84d96c7ac@gmail.com> References: <5611680c-d821-86d0-6a9c-2fc84d96c7ac@gmail.com> Message-ID: > Hi, > maybe this helps: > > Dim sFile As String > For Each sFile In Dir(User.Home) > Print File.BaseName(sFile) > Next > > Regards > Ingo Hi Ingo! Unfortunately not :) That will only hide the extensions from the file names, but I don't want them at all. It can be easily achieved with a loop and InStr() though. But, its rather a question of possible syntax for the regular expression. -------------- next part -------------- An HTML attachment was scrubbed... URL: From taboege at gmail.com Wed Oct 18 11:05:05 2017 From: taboege at gmail.com (Tobias Boege) Date: Wed, 18 Oct 2017 11:05:05 +0200 Subject: [Gambas-user] Size of a result in memory In-Reply-To: <1f35505d-16b8-35b0-a07f-284402c2f264@deganius.de> References: <1f35505d-16b8-35b0-a07f-284402c2f264@deganius.de> Message-ID: <20171018090505.GB21117@highrise.localdomain> On Wed, 18 Oct 2017, Christof Thalhofer wrote: > Hello, > > is there a simple way to get the size of a db result in memory? > > If I use: > > Object.SizeOf(resultobj) > > I get a very small count of bytes, way too small for the real size of > all the tuples contained by the resultobject. > > Object.SizeOf() gives more of a static size of an object. Have a look at the implementation: 767 BEGIN_METHOD(Object_SizeOf, GB_OBJECT object) 768 769 void *object = VARG(object); 770 771 if (check_null(object)) 772 return; 773 774 GB_ReturnInteger(CLASS_sizeof(OBJECT_class(object))); 775 776 END_METHOD It returns the size of the *class* of the object. Native classes in Gambas manage their memory more or less by themselves, especially if they interact with external libraries, and they don't keep track of the dynamic memory they use. So, you can't get the information you want, but the good news is that this information wouldn't have helped you either way. Unless your DBMS is made for tiny amounts of data, you shouldn't expect the dynamic memory allocated by the Result object to be indicative of the size of the query result. A Result object is usually just a small (almost fixed-size) object that is associated to a database connection and a query and allows you to fetch or navigate through the tuples. The DBMS loads the data on-demand, because you would expect that the entirety of a database result would not fit into your memory anyway. You should talk to the DBMS. If that doesn't know how big the result is, then really nobody does. But I suppose that this calculation is expensive. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From chrisml at deganius.de Wed Oct 18 14:33:57 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Wed, 18 Oct 2017 14:33:57 +0200 Subject: [Gambas-user] Size of a result in memory In-Reply-To: <20171018090505.GB21117@highrise.localdomain> References: <1f35505d-16b8-35b0-a07f-284402c2f264@deganius.de> <20171018090505.GB21117@highrise.localdomain> Message-ID: <7bc4153f-b944-041c-eb9f-42065eec21ae@deganius.de> Hello Tobias, thank you for your great explanation. Am 18.10.2017 um 11:05 schrieb Tobias Boege: > So, you can't get the information you want, but the good news is that this > information wouldn't have helped you either way. Unless your DBMS is made > for tiny amounts of data, you shouldn't expect the dynamic memory allocated > by the Result object to be indicative of the size of the query result. > A Result object is usually just a small (almost fixed-size) object that is > associated to a database connection and a query and allows you to fetch or > navigate through the tuples. The DBMS loads the data on-demand, because > you would expect that the entirety of a database result would not fit into > your memory anyway. But I think your assumption is not right. Well, the reason for my answer was, that I wrote a Class that inherits gb.db.Connection and that is able to cache results. It is for situations, where to fetch the result costs a lot of time and the result will be needed more than once. This works, I am able to cache results. To test it I wrote piece of code that starts the connection, after that fetches the result and the next time the same sql string is queried, it delivers the cached result: MTestme.TesteDBCache.44: Init connection for later usage 906 MTestme.TesteDBCache.51: Query1 5000 tuples duration in ms 7397 MTestme.TesteDBCache.61: Cached query 5000 tuples duration in ms 0 You see that in Position 3 duration in ms = 0. The result comes out of the cache (a collection with the sql query string as key). Now I have changed the code to do a simple Connection.Exec(qry): MTestme.TesteDBCache.44: Init connection for later usage 784 MTestme.TesteDBCache.51: Query1 5000 tuples duration in ms 6228 MTestme.TesteDBCache.61: identical Query duration in ms 5365 Here you see that in position 3 the result is fetched again from the db and that operation costs an amount of time (5365 ms). --------- For me the conclusion is, that the result fetches the 5000 tuples once and then they are inside the result object on the local computer fol later usage. As I use these cached results a lot in my programs I would like to delete old cached results if an upper limit of memory usage is reached. But therefore I have to know, how "heavy" a result is. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From taboege at gmail.com Wed Oct 18 17:23:39 2017 From: taboege at gmail.com (Tobias Boege) Date: Wed, 18 Oct 2017 17:23:39 +0200 Subject: [Gambas-user] Size of a result in memory In-Reply-To: <7bc4153f-b944-041c-eb9f-42065eec21ae@deganius.de> References: <1f35505d-16b8-35b0-a07f-284402c2f264@deganius.de> <20171018090505.GB21117@highrise.localdomain> <7bc4153f-b944-041c-eb9f-42065eec21ae@deganius.de> Message-ID: <20171018152339.GA13610@highrise.localdomain> On Wed, 18 Oct 2017, Christof Thalhofer wrote: > Hello Tobias, > > thank you for your great explanation. > > Am 18.10.2017 um 11:05 schrieb Tobias Boege: > > > So, you can't get the information you want, but the good news is that this > > information wouldn't have helped you either way. Unless your DBMS is made > > for tiny amounts of data, you shouldn't expect the dynamic memory allocated > > by the Result object to be indicative of the size of the query result. > > A Result object is usually just a small (almost fixed-size) object that is > > associated to a database connection and a query and allows you to fetch or > > navigate through the tuples. The DBMS loads the data on-demand, because > > you would expect that the entirety of a database result would not fit into > > your memory anyway. > > But I think your assumption is not right. > > Well, the reason for my answer was, that I wrote a Class that inherits > gb.db.Connection and that is able to cache results. > > It is for situations, where to fetch the result costs a lot of time and > the result will be needed more than once. This works, I am able to cache > results. To test it I wrote piece of code that starts the connection, > after that fetches the result and the next time the same sql string is > queried, it delivers the cached result: > > MTestme.TesteDBCache.44: Init connection for later usage 906 > MTestme.TesteDBCache.51: Query1 5000 tuples duration in ms 7397 > MTestme.TesteDBCache.61: Cached query 5000 tuples duration in ms 0 > > You see that in Position 3 duration in ms = 0. The result comes out of > the cache (a collection with the sql query string as key). > > Now I have changed the code to do a simple > Connection.Exec(qry): > > MTestme.TesteDBCache.44: Init connection for later usage 784 > MTestme.TesteDBCache.51: Query1 5000 tuples duration in ms 6228 > MTestme.TesteDBCache.61: identical Query duration in ms 5365 > > Here you see that in position 3 the result is fetched again from the db > and that operation costs an amount of time (5365 ms). > > --------- > > For me the conclusion is, that the result fetches the 5000 tuples once > and then they are inside the result object on the local computer fol > later usage. > You know, I was about to write that the result object, or the library that is used by the database driver in Gambas, probably only does some prefetching of a fixed number > 1 of results to reduce the overhead incurred by network communication. But you were right: I was only assuming what I said last time and since I have a table at hand, in a local SQLite3 database, which is 5.5 GiB in size, I thought I could provide numbers as well. I wrote a Gambas program that connects to the database and does a "SELECT * FROM table", then iterates through the entire result. Guess what, watching its memory usage in htop, I see that it consumes about 2 GiB, then segfaults. This is not what I expected, even having the SQLite3 limits[1] in mind. In fact, my perl6 program, which usually operates this database, has no trouble doing exactly the same thing, and it uses a constant amount of memory the whole time. I would dare to say that there is something wrong in some part of gb.db. I'm curious about that but my leisure time for today was used up by these experiments. > As I use these cached results a lot in my programs I would like to > delete old cached results if an upper limit of memory usage is reached. > > But therefore I have to know, how "heavy" a result is. > One thing you can do is go through each field in each record of the Result, and sum their sizes (since you measure the size of an Integer differently than that of a String or Blob, you use a SELECT CASE on the field's type). This will be slow, but it seems to be more or less what people suggest[2][3]. Another suggestion[4], there specific to MySQL, needs to create another table to store the result and exploit that the DBMS does track the size of tables. This is surely not an option for you. My proposal would be this: take the *row count* as an approximation to the cache size and limit the cache in terms of records. You can easily[*] get the row count of a result and maintain the number of rows stored in your cache. Regards, Tobi [1] https://sqlite.org/limits.html [2] https://stackoverflow.com/questions/4524019/how-to-get-the-byte-size-of-resultset-in-an-sql-query [3] https://dba.stackexchange.com/questions/156362/how-to-get-the-size-of-the-result-of-a-sql-query [4] https://stackoverflow.com/questions/22695288/is-there-a-way-to-calculate-the-size-of-a-mysql-query-response [*] Unless you're using an ODBC database, because those give you forward- only cursors in Gambas and you have to take care to do the counting at the same time you read the data into your cache, because there is no going back. (But note that this remark comes from my memory of what has been discussed on gambas-{user,devel}, it might not be accurate.) -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From chrisml at deganius.de Thu Oct 19 09:26:38 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Thu, 19 Oct 2017 09:26:38 +0200 Subject: [Gambas-user] Size of a result in memory In-Reply-To: <20171018152339.GA13610@highrise.localdomain> References: <1f35505d-16b8-35b0-a07f-284402c2f264@deganius.de> <20171018090505.GB21117@highrise.localdomain> <7bc4153f-b944-041c-eb9f-42065eec21ae@deganius.de> <20171018152339.GA13610@highrise.localdomain> Message-ID: <716289c5-b3b2-0e68-e15f-599b443174ed@deganius.de> Hello Tobias, Am 18.10.2017 um 17:23 schrieb Tobias Boege: > You know, I was about to write that the result object, or the library > that is used by the database driver in Gambas, probably only does some > prefetching of a fixed number > 1 of results to reduce the overhead > incurred by network communication. But you were right: I was only assuming > what I said last time and since I have a table at hand, in a local SQLite3 > database, which is 5.5 GiB in size, I thought I could provide numbers as > well. I wrote a Gambas program that connects to the database and does a > "SELECT * FROM table", then iterates through the entire result. > > Guess what, watching its memory usage in htop, I see that it consumes > about 2 GiB, then segfaults. This is not what I expected, even having > the SQLite3 limits[1] in mind. In fact, my perl6 program, which usually > operates this database, has no trouble doing exactly the same thing, > and it uses a constant amount of memory the whole time. A sql SELECT, that fetches 2GB and more is pushing the thing to the extreme. AFAIK for such sizes there exist better tools (depending on the dbms vendor) like postgresql COPY, mysql LOAD DATA or maybe an equivalent in sqlite. > I would dare to say that there is something wrong in some part of gb.db. > I'm curious about that but my leisure time for today was used up by these > experiments. For now I am quite happy with the fact that Gambas fetches the output of a SELECT in one piece, as you see: I can cache it for later usage. Anything else would be obscure to me. The segfault you are watching could indeed be a sign that there is sth wrong. But when Gambas segfaults on a sql query, that fetches 2 GB, it is nothing that disturbs my sleep. > My proposal would be this: take the *row count* as an approximation to the > cache size and limit the cache in terms of records. You can easily[*] get > the row count of a result and maintain the number of rows stored in your > cache. This is as good idea. I can calculate the average size of the first 10 rows by iterating through all fields and then deliver it * rowcount as Size_Maybewrong. :-) Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From c.calligaro at redcatdevices.it Thu Oct 19 13:25:15 2017 From: c.calligaro at redcatdevices.it (Cristiano Calligaro) Date: Thu, 19 Oct 2017 13:25:15 +0200 Subject: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 Message-ID: <009001d348cc$f01124e0$d0336ea0$@redcatdevices.it> Dear All, I have some problems in compiling Gambas 3.10.0 on a Linux CentOS 6.9 (64 bit). Shall I try another release < 3.10.0? The main problem si represented by SDL2 which seems to be available on CentOS 7 only. Cheers Cristiano -------------- next part -------------- An HTML attachment was scrubbed... URL: From taboege at gmail.com Thu Oct 19 13:44:26 2017 From: taboege at gmail.com (Tobias Boege) Date: Thu, 19 Oct 2017 13:44:26 +0200 Subject: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 In-Reply-To: <009001d348cc$f01124e0$d0336ea0$@redcatdevices.it> References: <009001d348cc$f01124e0$d0336ea0$@redcatdevices.it> Message-ID: <20171019114426.GE2657@highrise.localdomain> On Thu, 19 Oct 2017, Cristiano Calligaro wrote: > Dear All, > > > > I have some problems in compiling Gambas 3.10.0 on a Linux > CentOS 6.9 (64 bit). Shall I try another release < 3.10.0? > > The main problem si represented by SDL2 which seems to be > available on CentOS 7 only. > SDL2 was added in Gambas 3.7.0 from March 2015. I don't think you want to go back further than that. If you don't intend to use SDL2, it's no problem if you can't compile the SDL2 component. It is an optional library and shouldn't stop you from compiling Gambas. If it says at the end of ./configure that gb.sdl2 is disabled, just ignore that and proceed with "make". If, on the other hand, there is an error, we need the output of the configure script as described here: http://gambaswiki.org/wiki/doc/report#t3 Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From karl.reinl at fen-net.de Thu Oct 19 14:24:12 2017 From: karl.reinl at fen-net.de (Karl Reinl) Date: Thu, 19 Oct 2017 14:24:12 +0200 Subject: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 In-Reply-To: <20171019114426.GE2657@highrise.localdomain> References: <009001d348cc$f01124e0$d0336ea0$@redcatdevices.it> <20171019114426.GE2657@highrise.localdomain> Message-ID: <1508415852.4993.19.camel@Scenic.local> Am Donnerstag, den 19.10.2017, 13:44 +0200 schrieb Tobias Boege: > On Thu, 19 Oct 2017, Cristiano Calligaro wrote: > > Dear All, > > > > > > > > I have some problems in compiling Gambas 3.10.0 on a Linux > > CentOS 6.9 (64 bit). Shall I try another release < 3.10.0? > > > > The main problem si represented by SDL2 which seems to be > > available on CentOS 7 only. > > > > SDL2 was added in Gambas 3.7.0 from March 2015. I don't think you want to go > back further than that. If you don't intend to use SDL2, it's no problem if > you can't compile the SDL2 component. It is an optional library and shouldn't > stop you from compiling Gambas. > > If it says at the end of ./configure that gb.sdl2 is disabled, just ignore > that and proceed with "make". If, on the other hand, there is an error, we > need the output of the configure script as described here: > > http://gambaswiki.org/wiki/doc/report#t3 > > Regards, > Tobi > Salut, is it possible to split the end of the./configure output into 2 parts, one who says || THESE COMPONENTS ARE DISABLED: but necessary (like gb.qt4 for the IDE) other says || THESE COMPONENTS ARE DISABLED: but optional (like gb.jit) -- Amicalement Charlie From g4mba5 at gmail.com Thu Oct 19 15:32:26 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 19 Oct 2017 15:32:26 +0200 Subject: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 In-Reply-To: <1508415852.4993.19.camel@Scenic.local> References: <009001d348cc$f01124e0$d0336ea0$@redcatdevices.it> <20171019114426.GE2657@highrise.localdomain> <1508415852.4993.19.camel@Scenic.local> Message-ID: <60755a74-260a-a0e9-0ce1-a3ef6651b3f5@gmail.com> Le 19/10/2017 ? 14:24, Karl Reinl a ?crit?: > > Salut, > > is it possible to split the end of the./configure output into 2 parts, > one who says > || THESE COMPONENTS ARE DISABLED: but necessary > (like gb.qt4 for the IDE) > other says > || THESE COMPONENTS ARE DISABLED: but optional > (like gb.jit) > Yes, but necessary for what? And optional for what? -- Beno?t Minisini From taboege at gmail.com Thu Oct 19 15:50:34 2017 From: taboege at gmail.com (Tobias Boege) Date: Thu, 19 Oct 2017 15:50:34 +0200 Subject: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 In-Reply-To: <1508415852.4993.19.camel@Scenic.local> References: <009001d348cc$f01124e0$d0336ea0$@redcatdevices.it> <20171019114426.GE2657@highrise.localdomain> <1508415852.4993.19.camel@Scenic.local> Message-ID: <20171019135033.GG2657@highrise.localdomain> On Thu, 19 Oct 2017, Karl Reinl wrote: > Am Donnerstag, den 19.10.2017, 13:44 +0200 schrieb Tobias Boege: > > On Thu, 19 Oct 2017, Cristiano Calligaro wrote: > > > Dear All, > > > > > > > > > > > > I have some problems in compiling Gambas 3.10.0 on a Linux > > > CentOS 6.9 (64 bit). Shall I try another release < 3.10.0? > > > > > > The main problem si represented by SDL2 which seems to be > > > available on CentOS 7 only. > > > > > > > SDL2 was added in Gambas 3.7.0 from March 2015. I don't think you want to go > > back further than that. If you don't intend to use SDL2, it's no problem if > > you can't compile the SDL2 component. It is an optional library and shouldn't > > stop you from compiling Gambas. > > > > If it says at the end of ./configure that gb.sdl2 is disabled, just ignore > > that and proceed with "make". If, on the other hand, there is an error, we > > need the output of the configure script as described here: > > > > http://gambaswiki.org/wiki/doc/report#t3 > > > > Regards, > > Tobi > > > > Salut, > > is it possible to split the end of the./configure output into 2 parts, > one who says > || THESE COMPONENTS ARE DISABLED: but necessary > (like gb.qt4 for the IDE) > other says > || THESE COMPONENTS ARE DISABLED: but optional > (like gb.jit) To do that you have to get a list of the (recursive) dependencies of the IDE. I quickly made a Gambas script that can do that (but it is not completely bug-free because it's hard to determine which files in the source tree describe a component and which are *templates* for component description files!). If the immediate dependencies are enough, it is a simple matter of: $ sed -n 's/Component=\(.*\)/\1/p' Message-ID: <42857464.485260.1508421419050@mail.yahoo.com> Ciao. http://www.gambas-it.org/smf/ -------------------------------------------- Gio 19/10/17, Cristiano Calligaro ha scritto: Oggetto: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 A: user at lists.gambas-basic.org Data: Gioved? 19 ottobre 2017, 13:25 ??????????????? Dear All, ???????????????? I have some problems in compiling Gambas 3.10.0 on a Linux CentOS 6.9 (64 bit). Shall I try another release < 3.10.0???????????????? The main problem si represented by SDL2 which seems to be available on CentOS 7 only. ???????????????? Cheers ??????????????????????????????? Cristiano -------------------------------------------------- This is the Gambas Mailing List https://lists.gambas-basic.org/listinfo/user Hosted by https://www.hostsharing.net -----Segue allegato----- From mail.gambaspi at gmail.com Fri Oct 20 00:37:59 2017 From: mail.gambaspi at gmail.com (Zainudin Ahmad) Date: Fri, 20 Oct 2017 05:37:59 +0700 Subject: [Gambas-user] R: Test mail only In-Reply-To: References: <884355546.306067.1508223658623.ref@mail.yahoo.com> <884355546.306067.1508223658623@mail.yahoo.com> Message-ID: I think fine now, I got vuott reply ( https://lists.gambas-basic.org/pipermail/user/2017-October/000052.html) in GMail. On Tue, Oct 17, 2017 at 5:36 PM, Christof Thalhofer wrote: > Am 17.10.2017 um 09:00 schrieb Vuott: > > Hello, > > > > ...it works. > > Seems not for all. Some others did not see your mail. Can you answer again? > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mb at code-it.com Fri Oct 20 06:36:29 2017 From: mb at code-it.com (mikeB) Date: Thu, 19 Oct 2017 22:36:29 -0600 Subject: [Gambas-user] Column View Message-ID: <5b047dd2-c86d-d6d9-e87e-ce6efa07c5be@code-it.com> Greetings, ListView/ ColumnView Is there anyone could point me in the right direction where I could read detailed info to find out about either masking a column "***" instead of the text(password) being exposed OR setting the color, of a particular column, to black so that the text can't be seen? Been searching for days and can't seem to find if this is even possible. Thanks for any/ all help - have a GREAT day, mikeB From chrisml at deganius.de Fri Oct 20 07:52:11 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Fri, 20 Oct 2017 07:52:11 +0200 Subject: [Gambas-user] R: Test mail only In-Reply-To: References: <884355546.306067.1508223658623.ref@mail.yahoo.com> <884355546.306067.1508223658623@mail.yahoo.com> Message-ID: <5f5c7b89-f267-2695-f1cf-23dfb4fbe9b2@deganius.de> Am 20.10.2017 um 00:37 schrieb Zainudin Ahmad: > I think fine now, I got vuott reply > (https://lists.gambas-basic.org/pipermail/user/2017-October/000052.html) > in GMail. Thank you, very kind! :-) Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From bugtracker at gambaswiki.org Fri Oct 20 09:02:07 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Fri, 20 Oct 2017 07:02:07 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1201: Menu Edition Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1201&from=L21haW4- Fabien BODARD reported a new bug. Summary ------- Menu Edition Type : Request Priority : Medium Gambas version : Unknown Product : Development Environment Description ----------- A sugestion ... why not display the menu editor if you double click on the menu bar? From bagonergi at gmail.com Fri Oct 20 09:20:50 2017 From: bagonergi at gmail.com (Gianluigi) Date: Fri, 20 Oct 2017 09:20:50 +0200 Subject: [Gambas-user] R: Test mail only In-Reply-To: References: <884355546.306067.1508223658623.ref@mail.yahoo.com> <884355546.306067.1508223658623@mail.yahoo.com> Message-ID: +1 :-) Regards Gianluigi 2017-10-20 0:37 GMT+02:00 Zainudin Ahmad : > I think fine now, I got vuott reply (https://lists.gambas-basic. > org/pipermail/user/2017-October/000052.html) in GMail. > > On Tue, Oct 17, 2017 at 5:36 PM, Christof Thalhofer > wrote: > >> Am 17.10.2017 um 09:00 schrieb Vuott: >> > Hello, >> > >> > ...it works. >> >> Seems not for all. Some others did not see your mail. Can you answer >> again? >> >> >> Alles Gute >> >> Christof Thalhofer >> >> -- >> Dies ist keine Signatur >> >> >> >> -------------------------------------------------- >> >> This is the Gambas Mailing List >> https://lists.gambas-basic.org/listinfo/user >> >> Hosted by https://www.hostsharing.net >> >> > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rwe-sse at osnanet.de Fri Oct 20 10:37:05 2017 From: rwe-sse at osnanet.de (Rolf-Werner Eilert) Date: Fri, 20 Oct 2017 10:37:05 +0200 Subject: [Gambas-user] R: Test mail only In-Reply-To: References: <884355546.306067.1508223658623.ref@mail.yahoo.com> <884355546.306067.1508223658623@mail.yahoo.com> Message-ID: <59E9B5B1.90106@osnanet.de> Everything seems to run normally. As the tag [Gambas-user] was kept, my filter put the new mails into the usual folder. That's why I did not see any difference at first. For some folks, I get the option "Answer" and "Answer to list", for some I get "Answer" and "Answer to all" and for some there is only "Answer". But that has always been so. Regards Rolf Am 20.10.2017 09:20, schrieb Gianluigi: > +1 :-) > > Regards > Gianluigi > > 2017-10-20 0:37 GMT+02:00 Zainudin Ahmad >: > > I think fine now, I got vuott reply > (https://lists.gambas-basic.org/pipermail/user/2017-October/000052.html > ) > in GMail. > > On Tue, Oct 17, 2017 at 5:36 PM, Christof Thalhofer > > wrote: > > Am 17.10.2017 um 09:00 schrieb Vuott: > > Hello, > > > > ...it works. > > Seems not for all. Some others did not see your mail. Can you > answer again? > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > > Hosted by https://www.hostsharing.net > > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > > Hosted by https://www.hostsharing.net > > > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > From gambas.fr at gmail.com Fri Oct 20 11:19:54 2017 From: gambas.fr at gmail.com (Fabien Bodard) Date: Fri, 20 Oct 2017 11:19:54 +0200 Subject: [Gambas-user] Column View In-Reply-To: <5b047dd2-c86d-d6d9-e87e-ce6efa07c5be@code-it.com> References: <5b047dd2-c86d-d6d9-e87e-ce6efa07c5be@code-it.com> Message-ID: 2017-10-20 6:36 GMT+02:00 mikeB : > Greetings, > ListView/ ColumnView > Is there anyone could point me in the right direction where > I could read detailed info to find out about either masking > a column "***" instead of the text(password) being exposed > OR setting the color, of a particular column, to black so > that the text can't be seen? Well just store the value in a collection and display "***" when you add the value to the Column view : 'on top of your form code Private $colMyPassWords as New Collection MyColumnView.add(key, text,picturebox,etc 'Add this colMyPasswords[key]=sPassword MyColumnView[key][n] = "***" So the paswords are stored for next use in the collection with the same key as the columnView. And the columnView just show what you want. All the needs of all the developpers can't be added to each widget becaus we all have specific needs. Gambas standard widget are drawn to have the less properties as possible but the most flexibilities to allow users to make them self particularities. Just imagine that ColumnView is done with GridView... so yes if you want you can even change the color of the wanted cell :-). But I prefers to not lost you already. If you have questions don't take so many days to query them. Regards, Fabien Bodard > > Been searching for days and can't seem to find if this is even > possible. > > Thanks for any/ all help - have a GREAT day, > mikeB > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net -- Fabien Bodard From mb at code-it.com Fri Oct 20 15:50:42 2017 From: mb at code-it.com (mikeB) Date: Fri, 20 Oct 2017 07:50:42 -0600 Subject: [Gambas-user] Column View In-Reply-To: References: <5b047dd2-c86d-d6d9-e87e-ce6efa07c5be@code-it.com> Message-ID: <75a57cc3-ddeb-8fde-6aa1-ea93d4efd606@code-it.com> Thank you very much for your fast reply - it is more detailed then I expected;-) mikeB On 10/20/2017 03:19 AM, Fabien Bodard wrote: > 2017-10-20 6:36 GMT+02:00 mikeB : >> Greetings, >> ListView/ ColumnView >> Is there anyone could point me in the right direction where >> I could read detailed info to find out about either masking >> a column "***" instead of the text(password) being exposed >> OR setting the color, of a particular column, to black so >> that the text can't be seen? > > > Well just store the value in a collection and display "***" > > > when you add the value to the Column view : > 'on top of your form code > > Private $colMyPassWords as New Collection > > > MyColumnView.add(key, text,picturebox,etc > 'Add this > colMyPasswords[key]=sPassword > > MyColumnView[key][n] = "***" > > > So the paswords are stored for next use in the collection with the > same key as the columnView. > > And the columnView just show what you want. All the needs of all the > developpers can't be added to each widget becaus we all have specific > needs. > > Gambas standard widget are drawn to have the less properties as > possible but the most flexibilities to allow users to make them self > particularities. > > Just imagine that ColumnView is done with GridView... so yes if you > want you can even change the color of the wanted cell :-). But I > prefers to not lost you already. > > > If you have questions don't take so many days to query them. > > Regards, > > Fabien Bodard > > >> >> Been searching for days and can't seem to find if this is even >> possible. >> >> Thanks for any/ all help - have a GREAT day, >> mikeB >> >> -------------------------------------------------- >> >> This is the Gambas Mailing List >> https://lists.gambas-basic.org/listinfo/user >> >> Hosted by https://www.hostsharing.net > > > From gambas.fr at gmail.com Fri Oct 20 16:51:41 2017 From: gambas.fr at gmail.com (Fabien Bodard) Date: Fri, 20 Oct 2017 16:51:41 +0200 Subject: [Gambas-user] Column View In-Reply-To: <75a57cc3-ddeb-8fde-6aa1-ea93d4efd606@code-it.com> References: <5b047dd2-c86d-d6d9-e87e-ce6efa07c5be@code-it.com> <75a57cc3-ddeb-8fde-6aa1-ea93d4efd606@code-it.com> Message-ID: 2017-10-20 15:50 GMT+02:00 mikeB : > Thank you very much for your fast reply - it is more > detailed then I expected;-) > mikeB I think it is more usefull than just saying ... you can't > > > On 10/20/2017 03:19 AM, Fabien Bodard wrote: >> >> 2017-10-20 6:36 GMT+02:00 mikeB : >>> >>> Greetings, >>> ListView/ ColumnView >>> Is there anyone could point me in the right direction where >>> I could read detailed info to find out about either masking >>> a column "***" instead of the text(password) being exposed >>> OR setting the color, of a particular column, to black so >>> that the text can't be seen? >> >> >> >> Well just store the value in a collection and display "***" >> >> >> when you add the value to the Column view : >> 'on top of your form code >> >> Private $colMyPassWords as New Collection >> >> >> MyColumnView.add(key, text,picturebox,etc >> 'Add this >> colMyPasswords[key]=sPassword >> >> MyColumnView[key][n] = "***" >> >> >> So the paswords are stored for next use in the collection with the >> same key as the columnView. >> >> And the columnView just show what you want. All the needs of all the >> developpers can't be added to each widget becaus we all have specific >> needs. >> >> Gambas standard widget are drawn to have the less properties as >> possible but the most flexibilities to allow users to make them self >> particularities. >> >> Just imagine that ColumnView is done with GridView... so yes if you >> want you can even change the color of the wanted cell :-). But I >> prefers to not lost you already. >> >> >> If you have questions don't take so many days to query them. >> >> Regards, >> >> Fabien Bodard >> >> >>> >>> Been searching for days and can't seem to find if this is even >>> possible. >>> >>> Thanks for any/ all help - have a GREAT day, >>> mikeB >>> >>> -------------------------------------------------- >>> >>> This is the Gambas Mailing List >>> https://lists.gambas-basic.org/listinfo/user >>> >>> Hosted by https://www.hostsharing.net >> >> >> >> > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net -- Fabien Bodard From hans at gambas-buch.de Fri Oct 20 17:15:30 2017 From: hans at gambas-buch.de (Hans Lehmann) Date: Fri, 20 Oct 2017 17:15:30 +0200 Subject: [Gambas-user] XmlExplorer (gb.xml) Message-ID: <5cb711d2-6d10-0c41-d0b9-1e365d8ea21d@gambas-buch.de> Hello, someone has a lighting idea, as I use the class XmlExplorer (gb.xml) to specify the names and attributes in the XML file with the following content: ? ?? ? ? ?? ? Sincerely Honsek -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugtracker at gambaswiki.org Fri Oct 20 21:13:02 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Fri, 20 Oct 2017 19:13:02 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Carlo PANARA reported a new bug. Summary ------- Toolbar icons not displayed in ToolBar Type : Bug Priority : Low Gambas version : 3.10 Product : Unknown Description ----------- In the ToolBar icons selected with EditorToolBar are not displayed or disappear during IDE execution of program. From bugtracker at gambaswiki.org Sat Oct 21 10:12:43 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 21 Oct 2017 08:12:43 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Comment #1 by Beno?t MINISINI: I don't understand what you say. Please use a better english, and post a screenshot, and don't forget to give your system information in the text field above. From bugtracker at gambaswiki.org Sat Oct 21 10:15:47 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sat, 21 Oct 2017 08:15:47 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1200: Pointer example not correctly In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1200&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Fixed. From c.calligaro at redcatdevices.it Sat Oct 21 11:47:32 2017 From: c.calligaro at redcatdevices.it (Cristiano Calligaro) Date: Sat, 21 Oct 2017 11:47:32 +0200 Subject: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 Message-ID: <002801d34a51$9e3b9e30$dab2da90$@redcatdevices.it> Hi Folks, I have installed Gambas on CentOS 6.9 (even without SDL2). It seems working... Thanks for the hints! Cristiano -------------- next part -------------- An HTML attachment was scrubbed... URL: From bagonergi at gmail.com Sat Oct 21 12:28:47 2017 From: bagonergi at gmail.com (Gianluigi) Date: Sat, 21 Oct 2017 12:28:47 +0200 Subject: [Gambas-user] Gambas 3.10 on Linux CentOS 6.9 In-Reply-To: <002801d34a51$9e3b9e30$dab2da90$@redcatdevices.it> References: <002801d34a51$9e3b9e30$dab2da90$@redcatdevices.it> Message-ID: Have you got a look here? https://www.centos.org/forums/viewtopic.php?f=48&t=58079&p=250111&hilit=Gambas3#p250112 Regards Gianluigi 2017-10-21 11:47 GMT+02:00 Cristiano Calligaro : > Hi Folks, > > I have installed Gambas on CentOS 6.9 (even without SDL2). > It seems working... > > Thanks for the hints! > > Cristiano > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugtracker at gambaswiki.org Sun Oct 22 18:50:17 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 22 Oct 2017 16:50:17 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Ingo B. reported a new bug. Summary ------- Button with round corners - round button Type : Request Priority : Medium Gambas version : 3.10 Product : Development Environment Description ----------- It would be nice to have buttons with round corners. Either in a new class or as an additional property of the existing button. The corners can be rounded using a property "radius". If the "radius" of a square button is equal to button.H / 2, you get a round button. From bugtracker at gambaswiki.org Sun Oct 22 18:54:46 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 22 Oct 2017 16:54:46 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #1 by Beno?t MINISINI: Buttons look is handled by widget themes, so I can't decide at the Gambas level if they are round or not. From bugtracker at gambaswiki.org Sun Oct 22 20:05:17 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 22 Oct 2017 18:05:17 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #2 by Ingo B.: That's as pity. Ok, I saw the different code for gtk and qt4 (CButton.cpp). Maybe it is possible to have this feature only for then qt-theme. Ingo From bugtracker at gambaswiki.org Sun Oct 22 20:26:28 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Sun, 22 Oct 2017 18:26:28 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #3 by Tobias BOEGE: I'm almost sure I did this a long time ago already, but I can't find that project anymore. That's not a big loss either way, because it is not that hard to make a button in pure Gambas and you can do it yourself: have a look at the source code of the SwitchButton in gb.form. The hard (impossible?) part is to make your custom button look like a native one, and at that time I didn't spend even a second trying that. If you decide to delve into the code, notice that there is a Test/FSwitchButton test form in gb.form which you can play around with. From bugtracker at gambaswiki.org Mon Oct 23 18:42:59 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 16:42:59 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Comment #2 by Carlo PANARA: Test From bugtracker at gambaswiki.org Mon Oct 23 18:43:49 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 16:43:49 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Carlo PANARA added an attachment: Icons.png From bugtracker at gambaswiki.org Mon Oct 23 18:55:01 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 16:55:01 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Comment #3 by Carlo PANARA: In the toolbar I selected additional icons using the Editor ToolBar Configurator (see Icons.png). Now I Run and stop the code (in to the IDE). When I return in the editing mode (of code), one of the icons does not reappear. I have to restart Gambas to see them. Thanks for your patience! From bugtracker at gambaswiki.org Mon Oct 23 18:55:13 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 16:55:13 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Carlo PANARA added an attachment: Icons.png From bugtracker at gambaswiki.org Mon Oct 23 19:13:29 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 17:13:29 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1204: Error open new project Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1204&from=L21haW4- Carlo PANARA reported a new bug. Summary ------- Error open new project Type : Bug Priority : Low Gambas version : 3.10 Product : Development Environment Description ----------- When I Open a new project choosing: Project type - Parent directory - Project details, the new project does not open up and report an error. System information ------------------ [System] Gambas=3.10.90 OperatingSystem=Linux Kernel=4.10.0-37-generic Architecture=x86_64 Distribution=elementary OS 0.4.1 Loki Desktop=PANTHEON Theme=Gtk Language=it_IT.UTF-8 Memory=3553M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-xYZOlFa9vB,guid=e2b8774dc619f0c65f62bdef59ee1816 DEFAULTS_PATH=/usr/share/gconf/pantheon.default.path DESKTOP_SESSION=pantheon DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=pantheon GDM_LANG=it GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=14239 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GSETTINGS_SCHEMA_DIR=/data GTK_CSD=1 GTK_MODULES=pantheon-filechooser-module:gail:atk-bridge HOME= LANG=it_IT.UTF-8 LANGUAGE=it LC_ADDRESS=it_IT.UTF-8 LC_IDENTIFICATION=it_IT.UTF-8 LC_MEASUREMENT=it_IT.UTF-8 LC_MONETARY=it_IT.UTF-8 LC_NAME=it_IT.UTF-8 LC_NUMERIC=it_IT.UTF-8 LC_PAPER=it_IT.UTF-8 LC_TELEPHONE=it_IT.UTF-8 LC_TIME=it_IT.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/pantheon.mandatory.path PAPERSIZE=a4 PATH=/bin:/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT_ACCESSIBILITY=1 QT_IM_MODULE=ibus QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_STYLE_OVERRIDE=gtk SESSION_MANAGER=local/:@/tmp/.ICE-unix/2003,unix/:/tmp/.ICE-unix/2003 SHELL=/bin/bash SHLVL=0 SSH_AGENT_PID=2078 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-pantheon:/etc/xdg XDG_CURRENT_DESKTOP=Pantheon XDG_DATA_DIRS=/usr/share/pantheon:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=pantheon XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS=@im=ibus From bugtracker at gambaswiki.org Mon Oct 23 19:13:38 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 17:13:38 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1204: Error open new project In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1204&from=L21haW4- Carlo PANARA added an attachment: Error.png From bugtracker at gambaswiki.org Mon Oct 23 22:36:27 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 20:36:27 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1204: Error open new project In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1204&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Mon Oct 23 22:39:26 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 20:39:26 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1204: Error open new project In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1204&from=L21haW4- Comment #1 by Beno?t MINISINI: Fixed in commit https://gitlab.com/gambas/gambas/commit/d720a2789b7f03dd020fdec1221ce1133f892e8a Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Mon Oct 23 22:46:16 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 20:46:16 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Comment #4 by Beno?t MINISINI: I added the two same icons you saw me on your screenshot. When I run a program, the wizard wand icon disappears, but it comes back as soon as I stop the program, as expected. Can you make a movie capture of all what you described? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at gambaswiki.org Mon Oct 23 22:49:09 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 20:49:09 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1046: "Dialog Form" position below "Main Form" In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1046&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Mon Oct 23 23:15:04 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Mon, 23 Oct 2017 21:15:04 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1046: "Dialog Form" position below "Main Form" In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1046&from=L21haW4- Comment #1 by Beno?t MINISINI: Fixed in commit https://gitlab.com/gambas/gambas/commit/a048b76368e78082dfbdd324d59572235c2c4ea1 Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Tue Oct 24 14:12:20 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 12:12:20 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1205: wrong behaviour of IIF Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1205&from=L21haW4- Michael ALTROGGE reported a new bug. Summary ------- wrong behaviour of IIF Type : Bug Priority : Medium Gambas version : 3.10 Product : Language Description ----------- This works: If VAR.SYS_ShowDialogModal Then CF00.ShowDialog Else CF00.Show Endif This don't: IIf(VAR.SYS_ShowDialogModal, CF00.ShowDialog, CF00.Show) IIf(VAR.SYS_ShowDialogModal=True, CF00.ShowDialog, CF00.Show) gives the error: Typenunvertr?glichkeit: Erwartet Variant, stattdesen Function erhalten System information ------------------ [System] Gambas=3.10.90 OperatingSystem=Linux Kernel=4.8.0-34-generic Architecture=x86_64 Distribution=Linux Mint 18.1 Serena Desktop=CINNAMON Theme=Gtk Language=de_DE.utf8 Memory=3395M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-oPHMODwXsC,guid=b9587f39ef6ef2d30565105c59ef05a8 DEFAULTS_PATH=/usr/share/gconf/cinnamon.default.path DESKTOP_AUTOSTART_ID=104443eaed5cf2b72f150883677687931900000034800006 DESKTOP_SESSION=cinnamon DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=cinnamon GDM_XSERVER_LOCATION=local GNOME_DESKTOP_SESSION_ID=this-is-deprecated GTK_MODULES=gail:atk-bridge GTK_OVERLAY_SCROLLING=1 HOME= LANG=de_DE.utf8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/cinnamon.mandatory.path MDMSESSION=cinnamon MDM_LANG=de_DE.utf8 MDM_XSERVER_LOCATION=local PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT_ACCESSIBILITY=1 QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_QPA_PLATFORMTHEME=qgnomeplatform QT_STYLE_OVERRIDE=gtk SESSION_MANAGER=local/:@/tmp/.ICE-unix/3480,unix/:/tmp/.ICE-unix/3480 SHELL=/bin/bash SSH_AGENT_PID=3548 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime USER= USERNAME= WINDOWPATH=8 XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg XDG_CURRENT_DESKTOP=X-Cinnamon XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/usr/local/share/:/usr/share/:/snap/anbox/common/app-data:/usr/share/mdm/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SESSION_COOKIE=7c032a4c3b9a48d0974f4f7702ac8861-1508836775.893982-2133009833 XDG_SESSION_DESKTOP=cinnamon XDG_SESSION_ID=c1 XDG_VTNR=8 From bugtracker at gambaswiki.org Tue Oct 24 14:19:15 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 12:19:15 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1205: wrong behaviour of IIF In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1205&from=L21haW4- Comment #1 by Beno?t MINISINI: This is the expected behaviour, and you get the right error message. You can't evaluate function names and use them as values. Beno?t MINISINI changed the state of the bug to: Rejected. From bugtracker at gambaswiki.org Tue Oct 24 14:26:12 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 12:26:12 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1206: stanger things part I + II Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1206&from=L21haW4- Michael ALTROGGE reported a new bug. Summary ------- stanger things part I + II Type : Bug Priority : Medium Gambas version : 3.10 Product : Language Description ----------- I: having a dialog which is opened centered ... then editing code and try running will cause (very often) the dialog appear in the top left corner and not responding to keyboard and mouse ... i have to stop execution and sometimes solution is just wait a few seconds and restart again and then it works or if not to compile the project an then it works ... but thats a bit annoying II: doing this: tmpButton = New Button(pnlContent) As "ButtonAction" and having that: Public Sub ButtonAction_Click() will lead to the behaviour described under I. but no "tricks" will do ... changing to that: Public Procedure ButtonAction_Click() and it works ... From bugtracker at gambaswiki.org Tue Oct 24 14:33:50 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 12:33:50 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1205: wrong behaviour of IIF In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1205&from=L21haW4- Comment #2 by Michael ALTROGGE: answered nearly before i'm finishing writing ... wow :) From bugtracker at gambaswiki.org Tue Oct 24 14:45:19 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 12:45:19 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1206: stanger things part I + II In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1206&from=L21haW4- Comment #1 by Beno?t MINISINI: Please fill the system information text field and post a project that reproduces your problem. From bugtracker at gambaswiki.org Tue Oct 24 15:43:30 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 13:43:30 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1207: Failed to configure IDE toolbars. Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1207&from=L21haW4- Gianluigi GRADASCHI reported a new bug. Summary ------- Failed to configure IDE toolbars. Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description ----------- As an object, I can not add buttons (eg Format code) System information ------------------ [System] Gambas=3.10.90 a048b76 (master) OperatingSystem=Linux Kernel=4.4.0-97-generic Architecture=x86_64 Distribution=Ubuntu 16.04.3 LTS Desktop=UNITY Theme=Cleanlooks Language=it_IT.UTF-8 Memory=15975M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.0.0 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] CLUTTER_IM_MODULE=xim COMPIZ_BIN_PATH=/usr/bin/ COMPIZ_CONFIG_PROFILE=ubuntu DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-FBu4iqDCJE DEFAULTS_PATH=/usr/share/gconf/ubuntu.default.path DESKTOP_SESSION=ubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=ubuntu GDM_LANG=it GIO_LAUNCHED_DESKTOP_FILE=/home//.local/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=16510 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL= GNOME_KEYRING_PID= GPG_AGENT_INFO=/home//.gnupg/S.gpg-agent:0:1 GTK2_MODULES=overlay-scrollbar GTK_IM_MODULE=ibus GTK_MODULES=gail:atk-bridge:unity-gtk-module HOME=/home/ IM_CONFIG_PHASE=1 INSTANCE= JOB=unity-settings-daemon LANG=it_IT.UTF-8 LANGUAGE=it:en LC_ADDRESS=it_IT.UTF-8 LC_IDENTIFICATION=it_IT.UTF-8 LC_MEASUREMENT=it_IT.UTF-8 LC_MONETARY=it_IT.UTF-8 LC_NAME=it_IT.UTF-8 LC_NUMERIC=it_IT.UTF-8 LC_PAPER=it_IT.UTF-8 LC_TELEPHONE=it_IT.UTF-8 LC_TIME=it_IT.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/ubuntu.mandatory.path PAPERSIZE=a4 PATH=/home//bin:/home//.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD=/home/ QT4_IM_MODULE=xim QT_ACCESSIBILITY=1 QT_IM_MODULE=ibus QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_QPA_PLATFORMTHEME=appmenu-qt5 SESSION=ubuntu SESSIONTYPE=gnome-session SESSION_MANAGER=local/:@/tmp/.ICE-unix/1424,unix/:/tmp/.ICE-unix/1424 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime UPSTART_EVENTS=xsession started UPSTART_INSTANCE= UPSTART_JOB=unity7 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1176 USER= XAUTHORITY=/home//.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg XDG_CURRENT_DESKTOP=Unity XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=ubuntu XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS=@im=ibus From bugtracker at gambaswiki.org Tue Oct 24 15:43:59 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 13:43:59 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1207: Failed to configure IDE toolbars. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1207&from=L21haW4- Gianluigi GRADASCHI added an attachment: Toolbar.png From bugtracker at gambaswiki.org Tue Oct 24 16:05:49 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 14:05:49 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1207: Failed to configure IDE toolbars. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1207&from=L21haW4- Comment #1 by Beno?t MINISINI: I don't understand what you say: do you mean that drag & drop buttons does not work? From bugtracker at gambaswiki.org Tue Oct 24 16:27:29 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 14:27:29 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1207: Failed to configure IDE toolbars. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1207&from=L21haW4- Comment #2 by Gianluigi GRADASCHI: Hi Benoit, I did not remember drag and drop, I wanted to try Carlo's bug. Sorry to the noise Regards Gianluigi Gianluigi GRADASCHI changed the state of the bug to: Rejected. From bugtracker at gambaswiki.org Tue Oct 24 17:52:23 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 15:52:23 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Comment #5 by Carlo PANARA: In attach the code that produces the anomaly and images before and after execution and stop. Carlo PANARA changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Tue Oct 24 17:52:57 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 15:52:57 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Carlo PANARA added an attachment: Paint_CACHED-0.0.1.tar.gz From bugtracker at gambaswiki.org Tue Oct 24 17:53:04 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 15:53:04 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Carlo PANARA added an attachment: Before.png From bugtracker at gambaswiki.org Tue Oct 24 17:53:12 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 15:53:12 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Carlo PANARA added an attachment: After.png From bugtracker at gambaswiki.org Tue Oct 24 17:54:21 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 15:54:21 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Comment #6 by Carlo PANARA: with other codes I did not have any problems! From bugtracker at gambaswiki.org Tue Oct 24 18:19:04 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 16:19:04 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1206: stanger things part I + II In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1206&from=L21haW4- Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at gambaswiki.org Tue Oct 24 18:49:02 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 16:49:02 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1202: Toolbar icons not displayed in ToolBar In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1202&from=L21haW4- Comment #7 by Beno?t MINISINI: Thanks. Fixed in https://gitlab.com/gambas/gambas/commit/c2d99fc28c43d78868d9c9b94bebb6c7b7ecab98 Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Tue Oct 24 20:45:23 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 18:45:23 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #4 by Ingo B.: Thanks Tobias for your reply. But that I did not want to hear;-) I created a round button some time ago. And this did not look very good. Well, if that is too much effort, I conclude the request once. What do you mean by "there is a test / FSwitchButton testform in gb.form"? Best regards Ingo From bugtracker at gambaswiki.org Wed Oct 25 01:17:23 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 23:17:23 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1208: I can still insert date when debugging Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1208&from=L21haW4- Zainudin AHMAD reported a new bug. Summary ------- I can still insert date when debugging Type : Bug Priority : Low Gambas version : Master Product : Development Environment Description ----------- I can still insert date when debugging, this because "insert today's date now" tool still visible when debugging. Reproduce the Bug : (attach video) System information ------------------ [System] Gambas=3.10.90 f1046c7 (master) OperatingSystem=Linux Kernel=4.10.0-32-generic Architecture=x86_64 Distribution=Ubuntu 16.04.2 LTS Desktop=XFCE Theme=Gtk Language=en_US.UTF-8 Memory=1744M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] CLUTTER_BACKEND=x11 CLUTTER_IM_MODULE= DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-g9uCEv9Q47 DEFAULTS_PATH=/usr/share/gconf/xubuntu.default.path DESKTOP_SESSION=xubuntu DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xubuntu GDM_LANG=en_US GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GNOME_KEYRING_CONTROL= GNOME_KEYRING_PID= GPG_AGENT_INFO=/.gnupg/S.gpg-agent:0:1 GTK_IM_MODULE= GTK_OVERLAY_SCROLLING=0 HOME= IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=en_US.UTF-8 LANGUAGE=en_US LC_ADDRESS=id_ID.UTF-8 LC_IDENTIFICATION=id_ID.UTF-8 LC_MEASUREMENT=id_ID.UTF-8 LC_MONETARY=id_ID.UTF-8 LC_NAME=id_ID.UTF-8 LC_NUMERIC=id_ID.UTF-8 LC_PAPER=id_ID.UTF-8 LC_TELEPHONE=id_ID.UTF-8 LC_TIME=id_ID.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/xubuntu.mandatory.path PATH=/bin:/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD= QT4_IM_MODULE= QT_ACCESSIBILITY=1 QT_IM_MODULE=compose QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_STYLE_OVERRIDE=gtk SESSION=xubuntu SESSIONTYPE= SESSION_MANAGER=local/:@/tmp/.ICE-unix/1269,unix/:/tmp/.ICE-unix/1269 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime UPSTART_EVENTS=started xsession UPSTART_INSTANCE= UPSTART_JOB=startxfce4 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1116 USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-xubuntu:/usr/share/upstart/xdg:/etc/xdg:/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/share/xubuntu:/usr/share/xfce4:/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share:/var/lib/snapd/desktop:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=xubuntu XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS= From bugtracker at gambaswiki.org Wed Oct 25 01:18:19 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Tue, 24 Oct 2017 23:18:19 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1208: I can still insert date when debugging In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1208&from=L21haW4- Zainudin AHMAD added an attachment: Bug-Tool.mp4 From shordi at gmail.com Wed Oct 25 10:33:23 2017 From: shordi at gmail.com (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Wed, 25 Oct 2017 10:33:23 +0200 Subject: [Gambas-user] FTP Secure doesn't work on Gambas? Message-ID: Hi, We have installed a SSL certificate in our internet server and we want all FTP transactions under SSL, So I changed the FTP server to allow only SSL/TLS connections. In Gambas I use this code: Dim ftptest As New FtpClient ftptest.URL = servidor.Text & IIf(port.text, ":" & port.text, "") ftptest.User = usuario.Text ftptest.Password = password.Text ftptest.SSL.VerifyHost = True ftptest.SSL.VerifyPeer = False ftptest.debug = True ftptest.Async = False ftptest.get(tmp) And I received this on console: * Rebuilt URL to: ftp://myserver.com:21/ * Trying 999.999.999.999(the server's IP)... * Connected to myserver.com (999.999.999.999) port 21 (#0) < 220 ProFTPD 1.3.5d Server (ProFTPD) [999.999.999.999] > USER myuser < 550 SSL/TLS required on the control channel * Access denied: 550 * Closing connection 0 Gamba's FTP client doesn't work or I've been missing something? Thanks in advance Best Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugtracker at gambaswiki.org Wed Oct 25 12:21:55 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 10:21:55 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #5 by Gianluigi GRADASCHI: If you have a compiled version installed, you can navigate to the Gambas folder > comp> src > gb.form. Open the project and in the Button folder finds the SwitchButton class to study. Otherwise: Here you can download the latest version (0) Here you can download the stable version you want (1) Take out the folder and in app or comp folders you can to study the code directly from those who created it. (0) https://gitlab.com/gambas/gambas/branches (1) https://gitlab.com/gambas/gambas/tags Regards Gianluigi From bugtracker at gambaswiki.org Wed Oct 25 12:22:41 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 10:22:41 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Gianluigi GRADASCHI added an attachment: gbform.png From bugtracker at gambaswiki.org Wed Oct 25 12:28:47 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 10:28:47 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #6 by Tobias BOEGE: > What do you mean by "there is a test / FSwitchButton testform in gb.form"? In the gb.form source code exists a form FSwitchButton already. You can use it to run any modifications (Print, Debug statements, break points) you made to the SwitchButton class while studying it. In particular there is no need to reinstall gb.form to test it. From bugtracker at gambaswiki.org Wed Oct 25 13:48:24 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 11:48:24 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1209: Malfunction in Startup Class assignment. Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1209&from=L21haW4- Gianluigi GRADASCHI reported a new bug. Summary ------- Malfunction in Startup Class assignment. Type : Bug Priority : Medium Gambas version : Master Product : GUI components Description ----------- If you check another startup class or d'not see it or see two. See the three attached images. System information ------------------ [System] Gambas=3.10.90 a048b76 (master) OperatingSystem=Linux Kernel=4.4.0-97-generic Architecture=x86_64 Distribution=Ubuntu 16.04.3 LTS Desktop=UNITY Theme=Cleanlooks Language=it_IT.UTF-8 Memory=15975M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.0.0 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] CLUTTER_IM_MODULE=xim COMPIZ_BIN_PATH=/usr/bin/ COMPIZ_CONFIG_PROFILE=ubuntu DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-FBu4iqDCJE DEFAULTS_PATH=/usr/share/gconf/ubuntu.default.path DESKTOP_SESSION=ubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=ubuntu GDM_LANG=it GIO_LAUNCHED_DESKTOP_FILE=/home//.local/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=16510 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL= GNOME_KEYRING_PID= GPG_AGENT_INFO=/home//.gnupg/S.gpg-agent:0:1 GTK2_MODULES=overlay-scrollbar GTK_IM_MODULE=ibus GTK_MODULES=gail:atk-bridge:unity-gtk-module HOME=/home/ IM_CONFIG_PHASE=1 INSTANCE= JOB=unity-settings-daemon LANG=it_IT.UTF-8 LANGUAGE=it:en LC_ADDRESS=it_IT.UTF-8 LC_IDENTIFICATION=it_IT.UTF-8 LC_MEASUREMENT=it_IT.UTF-8 LC_MONETARY=it_IT.UTF-8 LC_NAME=it_IT.UTF-8 LC_NUMERIC=it_IT.UTF-8 LC_PAPER=it_IT.UTF-8 LC_TELEPHONE=it_IT.UTF-8 LC_TIME=it_IT.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/ubuntu.mandatory.path PAPERSIZE=a4 PATH=/home//bin:/home//.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD=/home/ QT4_IM_MODULE=xim QT_ACCESSIBILITY=1 QT_IM_MODULE=ibus QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_QPA_PLATFORMTHEME=appmenu-qt5 SESSION=ubuntu SESSIONTYPE=gnome-session SESSION_MANAGER=local/:@/tmp/.ICE-unix/1424,unix/:/tmp/.ICE-unix/1424 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime UPSTART_EVENTS=xsession started UPSTART_INSTANCE= UPSTART_JOB=unity7 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1176 USER= XAUTHORITY=/home//.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg XDG_CURRENT_DESKTOP=Unity XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=ubuntu XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS=@im=ibus From bugtracker at gambaswiki.org Wed Oct 25 13:52:13 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 11:52:13 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1209: Malfunction in Startup Class assignment. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1209&from=L21haW4- Gianluigi GRADASCHI added an attachment: Startup01.png From bugtracker at gambaswiki.org Wed Oct 25 13:52:28 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 11:52:28 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1209: Malfunction in Startup Class assignment. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1209&from=L21haW4- Gianluigi GRADASCHI added an attachment: Startup02.png From bugtracker at gambaswiki.org Wed Oct 25 13:52:46 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 11:52:46 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1209: Malfunction in Startup Class assignment. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1209&from=L21haW4- Gianluigi GRADASCHI added an attachment: StartupClass3.png From bugtracker at gambaswiki.org Wed Oct 25 14:20:42 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 12:20:42 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1209: Malfunction in Startup Class assignment. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1209&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Wed Oct 25 14:21:05 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 12:21:05 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1209: Malfunction in Startup Class assignment. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1209&from=L21haW4- Comment #1 by Beno?t MINISINI: Fixed in commit https://gitlab.com/gambas/gambas/commit/d7ff8d35fffca99e455967495ec24d88df7ab9a5 Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Wed Oct 25 14:21:23 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 12:21:23 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1208: I can still insert date when debugging In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1208&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at gambaswiki.org Wed Oct 25 14:30:52 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 12:30:52 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #7 by Gianluigi GRADASCHI: Hi Tobias, > "In particular there is no need to reinstall gb.form to test it" You mean that this also is possible with a non-compiled Gambas? Regards Gianluigi From bugtracker at gambaswiki.org Wed Oct 25 14:31:02 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 12:31:02 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1208: I can still insert date when debugging In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1208&from=L21haW4- Comment #1 by Beno?t MINISINI: Fixed in commit https://gitlab.com/gambas/gambas/commit/4db9e5c07e6ebdc21e2420d47b2bb5315fd8e40f Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at gambaswiki.org Wed Oct 25 14:40:04 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 12:40:04 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #8 by Tobias BOEGE: Yes, since gb.form is a component written in Gambas, it is just little more than a normal Gambas project. You can open it in the IDE, tweak some classes to your liking, test them and then copy them over to your own project (or copy them from the start). If your tweaks make sense, you may want to try to contribute them back to the official Gambas, too. If you have more questions about that, we should use the mailing list. From bugtracker at gambaswiki.org Wed Oct 25 14:51:59 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Wed, 25 Oct 2017 12:51:59 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1203: Button with round corners - round button In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1203&from=L21haW4- Comment #9 by Gianluigi GRADASCHI: Probably I can not explain well. I do not think there is gb.form if you have Gambas from PPA repository. From g4mba5 at gmail.com Wed Oct 25 14:52:19 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 25 Oct 2017 14:52:19 +0200 Subject: [Gambas-user] FTP Secure doesn't work on Gambas? In-Reply-To: References: Message-ID: <7b813181-433e-f58f-07a1-d21655e2c9b2@gmail.com> Le 25/10/2017 ? 10:33, Jorge Carri?n a ?crit?: > Hi, > We have installed a SSL certificate in our internet server and we want > all FTP transactions under SSL, So I changed the FTP server to allow > only SSL/TLS connections. > > In Gambas I use this code: > > ? ? Dim ftptest As New FtpClient > > ??? ftptest.URL = servidor.Text & IIf(port.text, ":" & port.text, "") > ??? ftptest.User = usuario.Text > ??? ftptest.Password = password.Text > ??? ftptest.SSL.VerifyHost = True > ??? ftptest.SSL.VerifyPeer = False > ??? ftptest.debug = True > ??? ftptest.Async = False > ??? ftptest.get(tmp) > > And I received this on console: > > * Rebuilt URL to: ftp://myserver.com:21/ > *?? Trying 999.999.999.999(the server's IP)... > * Connected to myserver.com (999.999.999.999) port > 21 (#0) > < 220 ProFTPD 1.3.5d Server (ProFTPD) [999.999.999.999] >> USER myuser > < 550 SSL/TLS required on the control channel > * Access denied: 550 > * Closing connection 0 > > Gamba's FTP client doesn't work or I've been missing something? > > Thanks in advance > > Best Regards > The "Gambas FTP client" is just curl. Do you use ftps:// in your URL? -- Beno?t Minisini From bugtracker at gambaswiki.org Thu Oct 26 09:48:49 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Thu, 26 Oct 2017 07:48:49 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1210: "Compile all", partial operation Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1210&from=L21haW4- Gianluigi GRADASCHI reported a new bug. Summary ------- "Compile all", partial operation Type : Bug Priority : Medium Gambas version : Master Product : Language Description ----------- If unused global variable is Public does not warn System information ------------------ [System] Gambas=3.10.90 4db9e5c (master) OperatingSystem=Linux Kernel=4.4.0-97-generic Architecture=x86_64 Distribution=Ubuntu 16.04.3 LTS Desktop=UNITY Theme=Cleanlooks Language=it_IT.UTF-8 Memory=15975M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.803.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.0.0 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 SQLite=libsqlite3.so.0.8.6 [Environment] CLUTTER_IM_MODULE=xim COMPIZ_BIN_PATH=/usr/bin/ COMPIZ_CONFIG_PROFILE=ubuntu DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-BizuEmaLyv DEFAULTS_PATH=/usr/share/gconf/ubuntu.default.path DESKTOP_SESSION=ubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=ubuntu GDM_LANG=it GIO_LAUNCHED_DESKTOP_FILE=/home//.local/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=15152 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL= GNOME_KEYRING_PID= GPG_AGENT_INFO=/home//.gnupg/S.gpg-agent:0:1 GTK2_MODULES=overlay-scrollbar GTK_IM_MODULE=ibus GTK_MODULES=gail:atk-bridge:unity-gtk-module HOME=/home/ IM_CONFIG_PHASE=1 INSTANCE= JOB=unity-settings-daemon LANG=it_IT.UTF-8 LANGUAGE=it:en LC_ADDRESS=it_IT.UTF-8 LC_IDENTIFICATION=it_IT.UTF-8 LC_MEASUREMENT=it_IT.UTF-8 LC_MONETARY=it_IT.UTF-8 LC_NAME=it_IT.UTF-8 LC_NUMERIC=it_IT.UTF-8 LC_PAPER=it_IT.UTF-8 LC_TELEPHONE=it_IT.UTF-8 LC_TIME=it_IT.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/ubuntu.mandatory.path PAPERSIZE=a4 PATH=/home//bin:/home//.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PWD=/home/ QT4_IM_MODULE=xim QT_ACCESSIBILITY=1 QT_IM_MODULE=ibus QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_QPA_PLATFORMTHEME=appmenu-qt5 SESSION=ubuntu SESSIONTYPE=gnome-session SESSION_MANAGER=local/:@/tmp/.ICE-unix/1409,unix/:/tmp/.ICE-unix/1409 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh TZ=:/etc/localtime UPSTART_EVENTS=xsession started UPSTART_INSTANCE= UPSTART_JOB=unity7 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1192 USER= XAUTHORITY=/home//.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg XDG_CURRENT_DESKTOP=Unity XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=ubuntu XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XMODIFIERS=@im=ibus From bugtracker at gambaswiki.org Thu Oct 26 09:49:15 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Thu, 26 Oct 2017 07:49:15 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1210: "Compile all", partial operation In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1210&from=L21haW4- Gianluigi GRADASCHI added an attachment: CompileAll-0.0.1.tar.gz From bugtracker at gambaswiki.org Thu Oct 26 13:44:33 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Thu, 26 Oct 2017 11:44:33 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1210: "Compile all", partial operation In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1210&from=L21haW4- Comment #1 by Beno?t MINISINI: This is by design. The compile has no global view of the classes, it compiles each class without any knowledge of the others. In other words, there is no linker in Gambas. The linking is entirely dynamic and done at runtime. Each class is like a little dynamic shared library. Beno?t MINISINI changed the state of the bug to: Rejected. From chrisml at deganius.de Thu Oct 26 18:28:40 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Thu, 26 Oct 2017 18:28:40 +0200 Subject: [Gambas-user] The old archives are merged Message-ID: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> Hello, we got the old archives from SourceForge and merged them: https://lists.gambas-basic.org/pipermail/user/ (This list is now readonly) https://lists.gambas-basic.org/pipermail/devel/ Now all Gambas mailinglists have their new home. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From taboege at gmail.com Thu Oct 26 18:43:45 2017 From: taboege at gmail.com (Tobias Boege) Date: Thu, 26 Oct 2017 18:43:45 +0200 Subject: [Gambas-user] The old archives are merged In-Reply-To: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> Message-ID: <20171026164345.GO2657@highrise.localdomain> On Thu, 26 Oct 2017, Christof Thalhofer wrote: > Hello, > > we got the old archives from SourceForge and merged them: > > https://lists.gambas-basic.org/pipermail/user/ > > (This list is now readonly) > https://lists.gambas-basic.org/pipermail/devel/ > > Now all Gambas mailinglists have their new home. > I'm very happy to hear that. Thanks! -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From g4mba5 at gmail.com Thu Oct 26 19:01:32 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 26 Oct 2017 19:01:32 +0200 Subject: [Gambas-user] The old archives are merged In-Reply-To: <20171026164345.GO2657@highrise.localdomain> References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> <20171026164345.GO2657@highrise.localdomain> Message-ID: Le 26/10/2017 ? 18:43, Tobias Boege a ?crit?: > On Thu, 26 Oct 2017, Christof Thalhofer wrote: >> Hello, >> >> we got the old archives from SourceForge and merged them: >> >> https://lists.gambas-basic.org/pipermail/user/ >> >> (This list is now readonly) >> https://lists.gambas-basic.org/pipermail/devel/ >> >> Now all Gambas mailinglists have their new home. >> > > I'm very happy to hear that. Thanks! > Apparently something weird happened during the merge. Just look at the october 2017 archive of the user mailing-list... -- Beno?t Minisini From bugtracker at gambaswiki.org Thu Oct 26 19:17:14 2017 From: bugtracker at gambaswiki.org (bugtracker at gambaswiki.org) Date: Thu, 26 Oct 2017 17:17:14 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #1210: "Compile all", partial operation In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.1210&from=L21haW4- Comment #2 by Gianluigi GRADASCHI: I thank you for your explanations and apologize to the noise. Regards From chrisml at deganius.de Thu Oct 26 19:49:03 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Thu, 26 Oct 2017 19:49:03 +0200 Subject: [Gambas-user] The old archives are merged In-Reply-To: References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> <20171026164345.GO2657@highrise.localdomain> Message-ID: <73387d66-9a5c-e842-8a6c-41d72febd3d0@deganius.de> Am 26.10.2017 um 19:01 schrieb Beno?t Minisini: > Apparently something weird happened during the merge. Just look at the > october 2017 archive of the user mailing-list... I did the merge again, with the same result. There is a strange hickup, these messages are random from years like 2004, 2006 ... until today. Mailman bin/arch seems not to find a place where to put these messages and so inserts it at the end ... I tried to reread the mbox file again, not other result. There are about 70000 mails, in a quick overview, they seem to be ok, so I hope we can live with this couple of errors. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From g4mba5 at gmail.com Thu Oct 26 22:43:12 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 26 Oct 2017 22:43:12 +0200 Subject: [Gambas-user] The old archives are merged In-Reply-To: <73387d66-9a5c-e842-8a6c-41d72febd3d0@deganius.de> References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> <20171026164345.GO2657@highrise.localdomain> <73387d66-9a5c-e842-8a6c-41d72febd3d0@deganius.de> Message-ID: <89b3376f-1e59-d03a-b467-6d353aa9b25c@gmail.com> Le 26/10/2017 ? 19:49, Christof Thalhofer a ?crit?: > Am 26.10.2017 um 19:01 schrieb Beno?t Minisini: > >> Apparently something weird happened during the merge. Just look at the >> october 2017 archive of the user mailing-list... > > I did the merge again, with the same result. There is a strange hickup, > these messages are random from years like 2004, 2006 ... until today. > > Mailman bin/arch seems not to find a place where to put these messages > and so inserts it at the end ... > > I tried to reread the mbox file again, not other result. > > There are about 70000 mails, in a quick overview, they seem to be ok, so > I hope we can live with this couple of errors. > > > Alles Gute > > Christof Thalhofer Why not "just" merge the two archives into their own mailing-list? "user-old" & "devel-old", or "sf-user" & "sf-devel"? That way the main mailing-list is kept clean. -- Beno?t Minisini From echo8hink at yahoo.com Fri Oct 27 01:09:20 2017 From: echo8hink at yahoo.com (Dave) Date: Thu, 26 Oct 2017 19:09:20 -0400 Subject: [Gambas-user] Problem with DataComboView in Gambas 3.10 Message-ID: Hello all. This is my first try at posting to this user list. Please be kind pointing out any errors I may make posting here. I have been trying out Gambas for a few projects I have in mind. One project is a recipe database I have used sporadically since the old PC dBase III days. In that time I have converted it to various other forms from MS Access to LibreOffice Base, etc. I am retired now and recently, I decided to try to work on it using Gambas data functions. I have parts of it working using a mysql database on my linux laptop. I have a many-to-many relationship from the Recipes table, thru the IngredientList table to the Measure, Foods and FoodPrep tables. I use autoincrement ID's in all tables. I was moving along pretty well until I upgraded to Gambas 3.10. I was using 3.8.? (I don't remember) before. The trouble is with using the DataComboView to update the FoodID in IngredientList from the Foods table. In 3.8.? I could use the control if I opened it up with a mouse click, then arrow keyed it down to my choice and then clicked the choice. If I mouse scrolled to the item it would not select, but it closed the combo. Now, in 3.10, when there are enough items in the combo drop-down to activate the vertical scroll bar, as soon as I select an item I get a Null object error. (See the screen shots in the attached tar.gz) I tried the same thing in the Gambas example database by adding colors until there were enough to make the scroll bar appear and it gave the same error. I included a copy of my system info in the tar.gz, also. I would appreciate any help or insight you all may have to offer. Thanks, Dave -------------- next part -------------- A non-text attachment was scrubbed... Name: Gambas3.10-DataComboViewError.tar.gz Type: application/gzip Size: 336703 bytes Desc: not available URL: From g4mba5 at gmail.com Fri Oct 27 03:28:36 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 27 Oct 2017 03:28:36 +0200 Subject: [Gambas-user] Problem with DataComboView in Gambas 3.10 In-Reply-To: References: Message-ID: Le 27/10/2017 ? 01:09, Dave via User a ?crit?: > Hello all. > > This is my first try at posting to this user list. Please be kind > pointing out any errors I may make posting here. > > I have been trying out Gambas for a few projects I have in mind. One > project is a recipe database I have used sporadically since the old PC > dBase III days. In that time I have converted it to various other forms > from MS Access to LibreOffice Base, etc. > > I am retired now and recently, I decided to try to work on it using > Gambas data functions. I have parts of it working using a mysql database > on my linux laptop. > > I have a many-to-many relationship from the Recipes table, thru the > IngredientList table to the Measure, Foods and FoodPrep tables. I use > autoincrement ID's in all tables. > > I was moving along pretty well until I upgraded to Gambas 3.10. I was > using 3.8.? (I don't remember) before. The trouble is with using the > DataComboView to update the FoodID in IngredientList from the Foods > table. In 3.8.? I could use the control if I opened it up with a mouse > click, then arrow keyed it down to my choice and then clicked the > choice. If I mouse scrolled to the item it would not select, but it > closed the combo. Now, in 3.10, when there are enough items in the combo > drop-down to activate the vertical scroll bar, as soon as I select an > item I get a Null object error. (See the screen shots in the attached > tar.gz) > > I tried the same thing in the Gambas example database by adding colors > until there were enough to make the scroll bar appear and it gave the > same error. > > I included a copy of my system info in the tar.gz, also. > > I would appreciate any help or insight you all may have to offer. > > Thanks, > > Dave > > If you can use the last master commit https://gitlab.com/gambas/gambas/commit/9fa8e2a5d6e755e1500f9812f39ed902289d2b36, you will get a temporary fix. Regards, -- Beno?t Minisini From mckaygerhard at gmail.com Sat Oct 28 17:45:34 2017 From: mckaygerhard at gmail.com (PICCORO McKAY Lenz) Date: Sat, 28 Oct 2017 11:45:34 -0400 Subject: [Gambas-user] The old archives are merged In-Reply-To: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> Message-ID: 2017-10-26 12:28 GMT-04:00 Christof Thalhofer : > (This list is now readonly) > https://lists.gambas-basic.org/pipermail/devel/ > > that's i cannot understand > Now all Gambas mailinglists have their new home. > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chrisml at deganius.de Sat Oct 28 19:31:14 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Sat, 28 Oct 2017 19:31:14 +0200 Subject: [Gambas-user] The old archives are merged In-Reply-To: References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> Message-ID: <6b24fdb3-e20f-56b4-525c-6eb932ad1d86@deganius.de> Hello Piccoro, Am 28.10.2017 um 17:45 schrieb PICCORO McKAY Lenz: > > > that's i cannot understand We fetched all mails of gambas-devel at lists.sourceforge.net from SourceForge, and then created a new mailinglist archive that can be seen here: https://lists.gambas-basic.org/pipermail/devel/ Technically it is a mailinglist where no one can subscribe, so the archive is readonly. Because Beno?t thought it would be better to have just one list (user at lists.gambas-basic.org). The Development Mailinglist is now an archive. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From bm.530502 at gmail.com Sun Oct 29 14:18:28 2017 From: bm.530502 at gmail.com (Ingo) Date: Sun, 29 Oct 2017 14:18:28 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) Message-ID: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> Hello together, I'd like to do a M-Search with Gamabs. /http://www.upnp-hacks.org/upnp.html// //When a UPnP capable device joins a network and wants to know what UPnP services are available on the network, it sends out a discovery message to the multicast address 239.255.255.250 on port 1900 via the UDP protocol. This message contains a header, similar to a HTTP request. This protocol is sometimes referred to as HTTPU (HTTP over UDP):// //// //M-SEARCH * HTTP/1.1// //HOST: 239.255.255.250:1900// //MAN: ssdp:discover// //MX: 10// //ST: ssdp:all/ I tested with curl -K option but with no effect. Curl brings warnings like: Warning: upnp.txt:1: warning: 'M-SEARCH' uses unquoted white space in the line Warning: that may cause side-effects! Warning: upnp.txt:1: warning: 'M-SEARCH' had unsupported trailing garbage Warning: upnp.txt:2: warning: 'HOST' is badly used here Is it possible to do a M-Search request maybe with httpClient? Thank you Regards Ingo -------------- next part -------------- An HTML attachment was scrubbed... URL: From mckaygerhard at gmail.com Sun Oct 29 16:08:03 2017 From: mckaygerhard at gmail.com (PICCORO McKAY Lenz) Date: Sun, 29 Oct 2017 11:08:03 -0400 Subject: [Gambas-user] The old archives are merged In-Reply-To: <6b24fdb3-e20f-56b4-525c-6eb932ad1d86@deganius.de> References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> <6b24fdb3-e20f-56b4-525c-6eb932ad1d86@deganius.de> Message-ID: ahhhhh, ummmmm, okkeeyyyy so: 1 mail list for all, devel and users questions 2 one mail list for git commits, 3 one mail list for devel archives, read only only for historical purposes a question: the archives of users old mail list are now merged too? in the normal list? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-10-28 13:31 GMT-04:00 Christof Thalhofer : > Hello Piccoro, > > Am 28.10.2017 um 17:45 schrieb PICCORO McKAY Lenz: > > > > > > > that's i cannot understand > > We fetched all mails of gambas-devel at lists.sourceforge.net from > SourceForge, and then created a new mailinglist archive that can be seen > here: > > https://lists.gambas-basic.org/pipermail/devel/ > > Technically it is a mailinglist where no one can subscribe, so the > archive is readonly. > > Because Beno?t thought it would be better to have just one list > (user at lists.gambas-basic.org). > > The Development Mailinglist is now an archive. > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From g4mba5 at gmail.com Sun Oct 29 17:10:03 2017 From: g4mba5 at gmail.com (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sun, 29 Oct 2017 17:10:03 +0100 Subject: [Gambas-user] The old archives are merged In-Reply-To: References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> <6b24fdb3-e20f-56b4-525c-6eb932ad1d86@deganius.de> Message-ID: <7fd2486f-cf0b-ffa0-e4cd-d8094bc4692a@gmail.com> Le 29/10/2017 ? 16:08, PICCORO McKAY Lenz a ?crit?: > ahhhhh, ummmmm, okkeeyyyy > > so: > 1 mail list for all, devel and users questions > 2 one mail list for git commits, > 3 one mail list for devel archives, read only only for historical purposes > > a question: the archives of users old mail list are now merged too? in > the normal list? > > Lenz McKAY Gerardo (PICCORO) > http://qgqlochekone.blogspot.com > There is no mailing-list for git commits, as you can subscribe yourself on gitlab.com to get them. -- Beno?t Minisini From chrisml at deganius.de Sun Oct 29 17:46:58 2017 From: chrisml at deganius.de (Christof Thalhofer) Date: Sun, 29 Oct 2017 17:46:58 +0100 Subject: [Gambas-user] The old archives are merged In-Reply-To: References: <908c2d0e-5189-81c9-35b4-eefdcbe9820e@deganius.de> <6b24fdb3-e20f-56b4-525c-6eb932ad1d86@deganius.de> Message-ID: Am 29.10.2017 um 16:08 schrieb PICCORO McKAY Lenz: > ahhhhh, ummmmm, okkeeyyyy > > so: > 1 mail list for all, devel and users questions Yes. > 3 one mail list for devel archives, read only only for historical purposes Yes. > a question: the archives of users old mail list are now merged too? in > the normal list? Yes. https://lists.gambas-basic.org/pipermail/user/ A couple of mails (of about 70000) caused a problem and could not be sorted in correctly by the mailman archiver. They are now listed in October 2017. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: From taboege at gmail.com Sun Oct 29 18:39:16 2017 From: taboege at gmail.com (Tobias Boege) Date: Sun, 29 Oct 2017 18:39:16 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) In-Reply-To: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> References: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> Message-ID: <20171029173916.GA2861@highrise.localdomain> On Sun, 29 Oct 2017, Ingo wrote: > Hello together, > > I'd like to do a M-Search with Gamabs. > > /http://www.upnp-hacks.org/upnp.html// > //When a UPnP capable device joins a network and wants to know what UPnP > services are available on the network, it sends out a discovery message to > the multicast address 239.255.255.250 on port 1900 via the UDP protocol. > This message contains a header, similar to a HTTP request. This protocol is > sometimes referred to as HTTPU (HTTP over UDP):// > //// > //M-SEARCH * HTTP/1.1// > //HOST: 239.255.255.250:1900// > //MAN: ssdp:discover// > //MX: 10// > //ST: ssdp:all/ > > I tested with curl -K option but with no effect. Curl brings warnings like: > Warning: upnp.txt:1: warning: 'M-SEARCH' uses unquoted white space in the > line > Warning: that may cause side-effects! > Warning: upnp.txt:1: warning: 'M-SEARCH' had unsupported trailing garbage > Warning: upnp.txt:2: warning: 'HOST' is badly used here > > > Is it possible to do a M-Search request maybe with httpClient? > I can't answer your question about HttpClient without looking into the curl source code (maybe they support an "httpu://" schema, but I wouldn't bet on it). The key to the warnings you get would be your(?) upnp.txt file which is read by "curl -K", yes? The warnings about trailing garbage could come from a wrong EOL marker in that file. If HTTPU is like HTTP in that regard, it will use the "windows" EOL sequence "\r\n". I would just use the UdpSocket from gb.net to send these requests. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From bm.530502 at gmail.com Sun Oct 29 19:13:35 2017 From: bm.530502 at gmail.com (Ingo) Date: Sun, 29 Oct 2017 19:13:35 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) In-Reply-To: <20171029173916.GA2861@highrise.localdomain> References: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> <20171029173916.GA2861@highrise.localdomain> Message-ID: <1300f241-0b96-3d67-ff84-aa84f43981e6@gmail.com> Am 29.10.2017 um 18:39 schrieb Tobias Boege: > I can't answer your question about HttpClient without looking into the > curl source code (maybe they support an "httpu://" schema, but I wouldn't > bet on it). Yes, that's maybe true. I have not found an example anywhere with curl?! > > The key to the warnings you get would be your(?) upnp.txt file which > is read by "curl -K", yes? The warnings about trailing garbage could > come from a wrong EOL marker in that file. If HTTPU is like HTTP in > that regard, it will use the "windows" EOL sequence "\r\n". I know about the CRLF. Even the last line has one. I've tried it with \n\r, \r\n and gb.CrLf. > > I would just use the UdpSocket from gb.net to send these requests. Hi Tobi, thanks for your reply. Do you have an approach with udpsocket? Best regards Ingo From taboege at gmail.com Sun Oct 29 20:10:59 2017 From: taboege at gmail.com (Tobias Boege) Date: Sun, 29 Oct 2017 20:10:59 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) In-Reply-To: <1300f241-0b96-3d67-ff84-aa84f43981e6@gmail.com> References: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> <20171029173916.GA2861@highrise.localdomain> <1300f241-0b96-3d67-ff84-aa84f43981e6@gmail.com> Message-ID: <20171029191059.GA8559@highrise.localdomain> On Sun, 29 Oct 2017, Ingo wrote: > Am 29.10.2017 um 18:39 schrieb Tobias Boege: > > I can't answer your question about HttpClient without looking into the > > curl source code (maybe they support an "httpu://" schema, but I wouldn't > > bet on it). > Yes, that's maybe true. I have not found an example anywhere with curl?! > > > > > The key to the warnings you get would be your(?) upnp.txt file which > > is read by "curl -K", yes? The warnings about trailing garbage could > > come from a wrong EOL marker in that file. If HTTPU is like HTTP in > > that regard, it will use the "windows" EOL sequence "\r\n". > I know about the CRLF. Even the last line has one. I've tried it with \n\r, > \r\n and gb.CrLf. > > > > I would just use the UdpSocket from gb.net to send these requests. > Hi Tobi, > thanks for your reply. Do you have an approach with udpsocket? > See the attached script. The UdpSocket interface looks a little weird with the manual Watch method. I don't think I've used it before, and I don't know if the script is working, as I get no response on the network here, but at least the code throws no error. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk -------------- next part -------------- #!/usr/bin/gbs3 Use "gb.net" Private $hUdp As UdpSocket Public Sub Main() $hUdp = New UdpSocket As "Socket" $hUdp.Bind() $hUdp.Watch(gb.Read, True) ' $hUdp.Broadcast = True ' ? $hUdp.TargetHost = "239.255.255.250" $hUdp.TargetPort = 1900 $hUdp.Begin() Write #$hUdp, "M-SEARCH * HTTP/1.1\r\n" Write #$hUdp, "HOST: 239.255.255.250:1900\r\n" Write #$hUdp, "MAN: ssdp:discover\r\n" Write #$hUdp, "MX: 10\r\n" Write #$hUdp, "ST: ssdp:all\r\n" $hUdp.Send() Debug "Request sent" End Public Sub Socket_Read() Dim sMsg As String Debug "Received packet:" sMsg = Read #Last, -4096 Debug sMsg End Public Sub Socket_Error() Debug "Error?" End From bm.530502 at gmail.com Sun Oct 29 21:09:25 2017 From: bm.530502 at gmail.com (Ingo) Date: Sun, 29 Oct 2017 21:09:25 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) In-Reply-To: <20171029191059.GA8559@highrise.localdomain> References: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> <20171029173916.GA2861@highrise.localdomain> <1300f241-0b96-3d67-ff84-aa84f43981e6@gmail.com> <20171029191059.GA8559@highrise.localdomain> Message-ID: Am 29.10.2017 um 20:10 schrieb Tobias Boege: > On Sun, 29 Oct 2017, Ingo wrote: >> Am 29.10.2017 um 18:39 schrieb Tobias Boege: >>> I can't answer your question about HttpClient without looking into the >>> curl source code (maybe they support an "httpu://" schema, but I wouldn't >>> bet on it). >> Yes, that's maybe true. I have not found an example anywhere with curl?! >> >>> The key to the warnings you get would be your(?) upnp.txt file which >>> is read by "curl -K", yes? The warnings about trailing garbage could >>> come from a wrong EOL marker in that file. If HTTPU is like HTTP in >>> that regard, it will use the "windows" EOL sequence "\r\n". >> I know about the CRLF. Even the last line has one. I've tried it with \n\r, >> \r\n and gb.CrLf. >>> I would just use the UdpSocket from gb.net to send these requests. >> Hi Tobi, >> thanks for your reply. Do you have an approach with udpsocket? >> > See the attached script. The UdpSocket interface looks a little weird > with the manual Watch method. I don't think I've used it before, and > I don't know if the script is working, as I get no response on the > network here, but at least the code throws no error. > > Regards, > Tobi > > That's great :-P With three small modifications it works - partially Because not all of the devices were found, just one of them. ?$hUdp.EndOfLine = gb.Windows??? ' has to be set ' $hUdp.Watch(gb.Read, True)? ?? ' (does not work) Write #$hUdp, "ST: ssdp:all\r\n\r\n"? ' a second CrLf "gssdp-discover -i wlan0 --timeout=3" finds all devices. Especially the router (FritzBox). But thanks for that. Greetings Ingo From bm.530502 at gmail.com Mon Oct 30 19:39:28 2017 From: bm.530502 at gmail.com (Ingo) Date: Mon, 30 Oct 2017 19:39:28 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) In-Reply-To: <20171029191059.GA8559@highrise.localdomain> References: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> <20171029173916.GA2861@highrise.localdomain> <1300f241-0b96-3d67-ff84-aa84f43981e6@gmail.com> <20171029191059.GA8559@highrise.localdomain> Message-ID: <7a44aa33-f297-4080-3a0d-4180b9c5ba9a@gmail.com> Am 29.10.2017 um 20:10 schrieb Tobias Boege: > On Sun, 29 Oct 2017, Ingo wrote: >> Am 29.10.2017 um 18:39 schrieb Tobias Boege: >>> I can't answer your question about HttpClient without looking into the >>> curl source code (maybe they support an "httpu://" schema, but I wouldn't >>> bet on it). >> Yes, that's maybe true. I have not found an example anywhere with curl?! >> >>> The key to the warnings you get would be your(?) upnp.txt file which >>> is read by "curl -K", yes? The warnings about trailing garbage could >>> come from a wrong EOL marker in that file. If HTTPU is like HTTP in >>> that regard, it will use the "windows" EOL sequence "\r\n". >> I know about the CRLF. Even the last line has one. I've tried it with \n\r, >> \r\n and gb.CrLf. >>> I would just use the UdpSocket from gb.net to send these requests. >> Hi Tobi, >> thanks for your reply. Do you have an approach with udpsocket? >> > See the attached script. The UdpSocket interface looks a little weird > with the manual Watch method. I don't think I've used it before, and > I don't know if the script is working, as I get no response on the > network here, but at least the code throws no error. > > Regards, > Tobi > > Hello Tobias, here is the full solution doing a M-Search based on your approach: Public Sub btnM_Search_Click() Dim sMSearch As String ? $hUdp = New UdpSocket As "Socket" ? $hUdp.Broadcast = True ? $hUdp.Timeout = 500 ? $hUdp.EndOfLine = gb.Windows ? $hUdp.Bind() ? sMSearch = "M-SEARCH * HTTP/1.1\r\n" ? sMSearch &= "HOST: 239.255.255.250:1900\r\n" ? sMSearch &= "MAN: \"ssdp:discover\"\r\n" ? sMSearch &= "MX: 3\r\n" ? sMSearch &= "ST: ssdp:all\r\n\r\n" ? 'sMSearch &= "ST: urn:schemas-upnp-org:device:MediaRenderer:1\r\n\r\n" ? $hUdp.TargetHost = "239.255.255.250" ? $hUdp.TargetPort = 1900 ? Write #$hUdp, sMSearch ? Debug "Request sent" End Public Sub Socket_Read() ? Dim sMsg As String ? While Not Eof($hUdp) ??? Read #$hUdp, sMsg, Lof($hUdp) ? Wend ? Debug sMsg End Public Sub Socket_Error() ? Debug "Error?" End The problem that not all devices were shown were the missing quotes in "MAN: \"ssdp:discover\"\r\n". I did an analysis with wireshark and saw the quotes when I used gssdp-discover. Now it should work as expected. Could you test it? Thanks an regards Ingo From karl.reinl at fen-net.de Mon Oct 30 21:45:21 2017 From: karl.reinl at fen-net.de (Karl Reinl) Date: Mon, 30 Oct 2017 21:45:21 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) In-Reply-To: <7a44aa33-f297-4080-3a0d-4180b9c5ba9a@gmail.com> References: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> <20171029173916.GA2861@highrise.localdomain> <1300f241-0b96-3d67-ff84-aa84f43981e6@gmail.com> <20171029191059.GA8559@highrise.localdomain> <7a44aa33-f297-4080-3a0d-4180b9c5ba9a@gmail.com> Message-ID: <1509396321.2462.32.camel@Scenic.local> Am Montag, den 30.10.2017, 19:39 +0100 schrieb Ingo: > Am 29.10.2017 um 20:10 schrieb Tobias Boege: > > On Sun, 29 Oct 2017, Ingo wrote: > >> Am 29.10.2017 um 18:39 schrieb Tobias Boege: > >>> I can't answer your question about HttpClient without looking into the > >>> curl source code (maybe they support an "httpu://" schema, but I wouldn't > >>> bet on it). > >> Yes, that's maybe true. I have not found an example anywhere with curl?! > >> > >>> The key to the warnings you get would be your(?) upnp.txt file which > >>> is read by "curl -K", yes? The warnings about trailing garbage could > >>> come from a wrong EOL marker in that file. If HTTPU is like HTTP in > >>> that regard, it will use the "windows" EOL sequence "\r\n". > >> I know about the CRLF. Even the last line has one. I've tried it with \n\r, > >> \r\n and gb.CrLf. > >>> I would just use the UdpSocket from gb.net to send these requests. > >> Hi Tobi, > >> thanks for your reply. Do you have an approach with udpsocket? > >> > > See the attached script. The UdpSocket interface looks a little weird > > with the manual Watch method. I don't think I've used it before, and > > I don't know if the script is working, as I get no response on the > > network here, but at least the code throws no error. > > > > Regards, > > Tobi > > > > > Hello Tobias, > here is the full solution doing a M-Search based on your approach: > > Public Sub btnM_Search_Click() > Dim sMSearch As String > $hUdp = New UdpSocket As "Socket" > $hUdp.Broadcast = True > $hUdp.Timeout = 500 > $hUdp.EndOfLine = gb.Windows > $hUdp.Bind() > > sMSearch = "M-SEARCH * HTTP/1.1\r\n" > sMSearch &= "HOST: 239.255.255.250:1900\r\n" > sMSearch &= "MAN: \"ssdp:discover\"\r\n" > sMSearch &= "MX: 3\r\n" > sMSearch &= "ST: ssdp:all\r\n\r\n" > 'sMSearch &= "ST: urn:schemas-upnp-org:device:MediaRenderer:1\r\n\r\n" > > $hUdp.TargetHost = "239.255.255.250" > $hUdp.TargetPort = 1900 > Write #$hUdp, sMSearch > Debug "Request sent" > End > > Public Sub Socket_Read() > Dim sMsg As String > > While Not Eof($hUdp) > Read #$hUdp, sMsg, Lof($hUdp) > Wend > > Debug sMsg > End > > Public Sub Socket_Error() > Debug "Error?" > End > > The problem that not all devices were shown were the missing quotes in > "MAN: \"ssdp:discover\"\r\n". > I did an analysis with wireshark and saw the quotes when I used > gssdp-discover. > > Now it should work as expected. Could you test it? > > Thanks an regards > Ingo Salut Ingo, my 'FRITZ!Box Fon WLAN 7170' creates a 98 lines output -- Amicalement Charlie From bm.530502 at gmail.com Mon Oct 30 22:02:52 2017 From: bm.530502 at gmail.com (Ingo) Date: Mon, 30 Oct 2017 22:02:52 +0100 Subject: [Gambas-user] HowTo a M-Search (UPnP) In-Reply-To: <1509396321.2462.32.camel@Scenic.local> References: <559aecc2-d30c-2da8-754f-9a8ba2576e8f@gmail.com> <20171029173916.GA2861@highrise.localdomain> <1300f241-0b96-3d67-ff84-aa84f43981e6@gmail.com> <20171029191059.GA8559@highrise.localdomain> <7a44aa33-f297-4080-3a0d-4180b9c5ba9a@gmail.com> <1509396321.2462.32.camel@Scenic.local> Message-ID: <0492a078-7e88-d346-07ff-fb5516bad162@gmail.com> Am 30.10.2017 um 21:45 schrieb Karl Reinl: >> >> Hello Tobias, >> here is the full solution doing a M-Search based on your approach: >> >> Public Sub btnM_Search_Click() >> Dim sMSearch As String >> $hUdp = New UdpSocket As "Socket" >> $hUdp.Broadcast = True >> $hUdp.Timeout = 500 >> $hUdp.EndOfLine = gb.Windows >> $hUdp.Bind() >> >> sMSearch = "M-SEARCH * HTTP/1.1\r\n" >> sMSearch &= "HOST: 239.255.255.250:1900\r\n" >> sMSearch &= "MAN: \"ssdp:discover\"\r\n" >> sMSearch &= "MX: 3\r\n" >> sMSearch &= "ST: ssdp:all\r\n\r\n" >> 'sMSearch &= "ST: urn:schemas-upnp-org:device:MediaRenderer:1\r\n\r\n" >> >> $hUdp.TargetHost = "239.255.255.250" >> $hUdp.TargetPort = 1900 >> Write #$hUdp, sMSearch >> Debug "Request sent" >> End >> >> Public Sub Socket_Read() >> Dim sMsg As String >> >> While Not Eof($hUdp) >> Read #$hUdp, sMsg, Lof($hUdp) >> Wend >> >> Debug sMsg >> End >> >> Public Sub Socket_Error() >> Debug "Error?" >> End >> >> The problem that not all devices were shown were the missing quotes in >> "MAN: \"ssdp:discover\"\r\n". >> I did an analysis with wireshark and saw the quotes when I used >> gssdp-discover. >> >> Now it should work as expected. Could you test it? >> >> Thanks an regards >> Ingo > Salut Ingo, > > my 'FRITZ!Box Fon WLAN 7170' creates a 98 lines output > Hello Charlie, that's great. Thank you for testing. Regards Ingo From cassiomedeiros at hotmail.com Tue Oct 31 02:53:56 2017 From: cassiomedeiros at hotmail.com (=?iso-8859-1?Q?C=E1ssio_-_CurriculumNaNet=2Ecom=2Ebr?=) Date: Tue, 31 Oct 2017 01:53:56 +0000 Subject: [Gambas-user] I am looking for Programmer GAMBAS For Software Adaptation Message-ID: Good night people! I'm from S?o Jos? do Rio Preto - SP - Brazil, I have a lanhouse with 10 machines and we want to migrate to linux mint, searching the alternatives for control of lanhouse we discovered the site OpenASB (http://www.openasb.com/) manager of lan house, however the development has been discontinued and I do not find anyone in brazil who wants to create this function in the program: Currently we use the monthly paid version of NexCafe the main function that we can not be without is to manage the pages that the user printed, when he clicks to print the program generates a pdf, counts the pages and presents the options of printing: black or colored with the values, he chooses the printing already knowing how much he will pay, then when he goes to pay in the box the system adds the pages with the time used automatically. for us this function is very useful, how can we proceed to the development of this function in OpenASB? How much would it be? Thank you, I used Google Translator :) Obrigado, C?ssio Medeiros WhatsApp (11) 98347 6810 -------------- next part -------------- An HTML attachment was scrubbed... URL: From dosida at gmail.com Tue Oct 31 06:04:03 2017 From: dosida at gmail.com (Dimitris Anogiatis) Date: Mon, 30 Oct 2017 23:04:03 -0600 Subject: [Gambas-user] I am looking for Programmer GAMBAS For Software Adaptation In-Reply-To: References: Message-ID: Translation using Google Translate Hello C?ssio, I looked at the OpenASB page but could not find the source code that you might need to modify OpenASB to your needs. Since development of OpenASB has halted, I would contact the developer to send you a copy or a link to a copy of the Gambas3 source code for both the server and the client program. The developer's email is: openasb at yahoo.com.br Hope this helps Tradu??o usando o Google Translate Ol? C?ssio, Eu olhei a p?gina do OpenASB, mas n?o consegui encontrar o c?digo-fonte que voc? precisaria modificar o OpenASB ?s suas necessidades. Uma vez que o desenvolvimento do OpenASB parou, eu entraria em contato com o desenvolvedor para enviar uma c?pia ou um link para uma c?pia do c?digo-fonte Gambas3 para o servidor e o programa cliente. O e-mail do desenvolvedor ?: openasb at yahoo.com.br Espero que isto ajude On Mon, Oct 30, 2017 at 7:53 PM, C?ssio - CurriculumNaNet.com.br < cassiomedeiros at hotmail.com> wrote: > Good night people! I'm from S?o Jos? do Rio Preto - SP - Brazil, I have a > lanhouse with 10 machines and we want to migrate to linux mint, searching > the alternatives for control of lanhouse we discovered the site OpenASB ( > http://www.openasb.com/) manager of lan house, however the development > has been discontinued and I do not find anyone in brazil who wants to > create this function in the program: > Currently we use the monthly paid version of NexCafe the main function > that we can not be without is to manage the pages that the user printed, > when he clicks to print the program generates a pdf, counts the pages and > presents the options of printing: black or colored with the values, he > chooses the printing already knowing how much he will pay, then when he > goes to pay in the box the system adds the pages with the time used > automatically. for us this function is very useful, how can we proceed to > the development of this function in OpenASB? How much would it be? > > Thank you, > > > I used Google Translator :) > > > > Obrigado, > > C?ssio Medeiros > WhatsApp (11) 98347 6810 > > > > -------------------------------------------------- > > This is the Gambas Mailing List > https://lists.gambas-basic.org/listinfo/user > > Hosted by https://www.hostsharing.net > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rwe-sse at osnanet.de Tue Oct 31 13:52:10 2017 From: rwe-sse at osnanet.de (Rolf-Werner Eilert) Date: Tue, 31 Oct 2017 13:52:10 +0100 Subject: [Gambas-user] Cannot find Gambas on Suse Leap 42.2 Message-ID: <59F871FA.5060509@osnanet.de> So I continue the thread here... I used the 1click install, and it installed Gambas, but without the Scripter part. And I am still not quite sure about why it was no problem to find it when installing Leap on several systems, and now suddenly it seemed to have vanished. Anyway, this morning it was there again and I could successfully add the scripter component, so it runs as expected now :) Regards Rolf From olivier.cruilles at yahoo.fr Tue Oct 31 14:10:51 2017 From: olivier.cruilles at yahoo.fr (Yahoo) Date: Tue, 31 Oct 2017 09:10:51 -0400 Subject: [Gambas-user] I am looking for Programmer GAMBAS For Software Adaptation In-Reply-To: References: Message-ID: Hello Dimitris, You can find the Source code of OpenASB on the following page:?http://www.openasb.com/softwareshtm.php Just download (Fontes) version of the Server and Client, because they both contain the source code.? Olivier Cruilles Le October 31, 2017 ? 01:05:03, Dimitris Anogiatis (dosida at gmail.com) a ?crit: ?Translation using Google Translate Hello C?ssio, I looked at the OpenASB page but could not find the source code that you might need to modify OpenASB to your needs. Since development of OpenASB has halted, I would contact the developer to send you a copy or a link to a copy of the Gambas3 source code for both the server and the client program. The developer's email is: openasb at yahoo.com.br Hope this helps Tradu??o usando o Google Translate Ol? C?ssio, Eu olhei a p?gina do OpenASB, mas n?o consegui encontrar o c?digo-fonte que voc? precisaria modificar o OpenASB ?s suas necessidades. Uma vez que o desenvolvimento do OpenASB parou, eu entraria em contato com o desenvolvedor para enviar uma c?pia ou um link para uma c?pia do c?digo-fonte Gambas3 para o servidor e o programa cliente. O e-mail do desenvolvedor ?: openasb at yahoo.com.br Espero que isto ajude On Mon, Oct 30, 2017 at 7:53 PM, C?ssio - CurriculumNaNet.com.br wrote: Good night people! I'm from S?o Jos? do Rio Preto - SP - Brazil, I have a lanhouse with 10 machines and we want to migrate to linux mint, searching the alternatives for control of lanhouse we discovered the site OpenASB (http://www.openasb.com/) manager of lan house, however the development has been discontinued and I do not find anyone in brazil who wants to create this function in the program: Currently we use the monthly paid version of NexCafe the main function that we can not be without is to manage the pages that the user printed, when he clicks to print the program generates a pdf, counts the pages and presents the options of printing: black or colored with the values, he chooses the printing already knowing how much he will pay, then when he goes to pay in the box the system adds the pages with the time used automatically. for us this function is very useful, how can we proceed to the development of this function in OpenASB? How much would it be? Thank you, I used Google Translator :) Obrigado, C?ssio Medeiros? WhatsApp (11) 98347 6810 -------------------------------------------------- This is the Gambas Mailing List https://lists.gambas-basic.org/listinfo/user Hosted by https://www.hostsharing.net -------------------------------------------------- This is the Gambas Mailing List https://lists.gambas-basic.org/listinfo/user Hosted by https://www.hostsharing.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From echo8hink at yahoo.com Tue Oct 31 16:03:24 2017 From: echo8hink at yahoo.com (Dave) Date: Tue, 31 Oct 2017 11:03:24 -0400 Subject: [Gambas-user] How to clear or recreate a report preview Message-ID: I have a question about using the report2 component. I have a button on the main form that calls report.Preview to show the report. I am using a record ID number to control the result set used for the report. The first time the preview is called, it shows the correct data in the report. When I close the report preview, switch to view a different record and click the button to show the preview of the same report for the current record, I get the same preview for the previously produced report. I have put some debug "print" statements in the report class file and they are only executed the first time the preview is called. I can't find a way to get the preview to use the "new" data beyond the first time it is called. I call the report with button_click, report.preview and the code in report.class is under sub _new() What am I missing here? -Dave From cassiomedeiros at hotmail.com Tue Oct 31 16:45:24 2017 From: cassiomedeiros at hotmail.com (=?iso-8859-1?Q?C=E1ssio_-_CurriculumNaNet=2Ecom=2Ebr?=) Date: Tue, 31 Oct 2017 15:45:24 +0000 Subject: [Gambas-user] User Digest, Vol 4, Issue 27 In-Reply-To: References: Message-ID: 4. I am looking for Programmer GAMBAS For Software Adaptation Thanks for the help, the official website has the source programs (server and client) I saved. I emailed the developers more than a month ago and got no response. :( so I'm looking for someone to do the programming. ================= Hello C?ssio, I looked at the OpenASB page but could not find the source code that you might need to modify OpenASB to your needs. Since development of OpenASB has halted, I would contact the developer to send you a copy or a link to a copy of the Gambas3 source code for both the server and the client program. The developer's email is: openasb at yahoo.com.br Hope this helps ============= -------------- next part -------------- An HTML attachment was scrubbed... URL: