From jshackney at ...626... Fri Oct 1 05:22:25 2010 From: jshackney at ...626... (Jason Hackney) Date: Thu, 30 Sep 2010 23:22:25 -0400 Subject: [Gambas-user] Error after project is compiled In-Reply-To: <201009281910.04456.gambas@...1...> References: <201009210330.31677.gambas@...1...> <201009281910.04456.gambas@...1...> Message-ID: gambas3: build 3247 output attached... > I have no problem at all with running the executable. Can you send me the > full > output of the compilation & installation of gambas on your machine ? > > -- > Beno?t Minisini > -------------- next part -------------- A non-text attachment was scrubbed... Name: g3b3247.tgz Type: application/x-gzip Size: 41726 bytes Desc: not available URL: From imp.tsingh at ...626... Fri Oct 1 21:27:39 2010 From: imp.tsingh at ...626... (IMP Technologies - Tajinder Singh) Date: Sat, 2 Oct 2010 00:57:39 +0530 Subject: [Gambas-user] Gambas app run as root Message-ID: Hi all, I am new to Gambas but have done some projects in Visual Basic at college time. It is a good feeling to know about Gambas which I can use to create helpful applications on Linux platforms. I have created a small basic interface for Fedora to change Plymouth theme. But as changing theme requires to run some commands as root, I would like to ask for root password before starting the application. Similarly whenever we run 'system-config-boot' or other software that requires root privileges. Please help me with detailed guidance as how I can achieve the result. Thanks & Regards, Tajinder Singh MD & CEO IMP Technologies [Affordable :: Quality :: Satisfaction] Mb. : +91-9814943801 Tel. : +91-161-2541944 E-mail : imp.tsingh at ...626... Web : http://www.imptechs.com V-Card : http://www.imptechs.com/misc/IMPTechnologies_V-Card.jpg From sourceforge-raindog2 at ...94... Fri Oct 1 22:23:43 2010 From: sourceforge-raindog2 at ...94... (Rob) Date: Fri, 1 Oct 2010 16:23:43 -0400 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: Message-ID: <201010011623.43685.sourceforge-raindog2@...94...> On Friday 01 October 2010 15:27, IMP Technologies - Tajinder Singh wrote: > I have created a small basic interface for Fedora to change Plymouth > theme. But as changing theme requires to run some commands as root, I > would like to ask for root password before starting the application. > Similarly whenever we run 'system-config-boot' or other software that > requires root privileges. On any other desktop Linux distribution, either "gksu" or "kdesu" would be installed by default, and if you checked the current user (User.id) and it weren't zero, you could run one of those programs with the path to your program as an argument. It would prompt the user for his password, and if the user had sudo privileges, your program would then be run as root. As I understand it, Red Hat considers programs like gksu to be a security risk, and so it's not available in Fedora. You could build it yourself and include it in the package for your program, I guess. If sudoers is not set up on your users' systems, gksu has a "--su-mode" command line option that should allow you to do the same, but asking for a root password. But most modern distributions don't even set a root password anymore, requiring users to do everything with sudo and graphical wrappers for it such as gksu. I don't know what the case is with Fedora. Rob From ihaywood at ...1979... Sat Oct 2 10:41:50 2010 From: ihaywood at ...1979... (Ian Haywood) Date: Sat, 2 Oct 2010 18:41:50 +1000 Subject: [Gambas-user] gambas3 ubuntu packages Message-ID: I have produced some draft ubuntu packages for gambas3, based on svn revision 3246 they are produced largely by taking the gambas2 debian packaging files and replacing a lot of "2"s with "3"s some other changes: gambas2-gb-kde-html becomes gambas3-gb-qt-webkit gambas3-gb-gtk-svg and gambas3-gb-corba don't exist: they don't seem to produce libraries in the upstream svn. gambas3-gb-db-firebird isn't packaged for licence issues as for the gambas2 packages gambas3-gb-dbus is added for the new DBus bindings. they are complied against ubuntu 9.10 ("karmic koala"), I'm interested to hear about how they go on later ubuntu versions or other debian-based distros. to load add the following to your /etc/apt/sources.list: deb http://ppa.launchpad.net/ihaywood3/gambas3/ubuntu karmic main deb-src http://ppa.launchpad.net/ihaywood3/gambas3/ubuntu karmic main then do "sudo apt-get update ; sudo apt-get install gambas3" The version numbers don't mean anything, currently "0.2-1", I will update the packages with svn at irregular intervals or when requested. the major version will stay at 0 so that when official packages come out they replace my packages. Ian From rospolosco at ...152... Sat Oct 2 14:22:11 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 2 Oct 2010 14:22:11 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: Message-ID: <201010021422.12120.rospolosco@...152...> Il venerd? 1 ottobre 2010 21:27:39 IMP Technologies - Tajinder Singh ha scritto: > Hi all, > > I am new to Gambas but have done some projects in Visual Basic at college > time. > > It is a good feeling to know about Gambas which I can use to create helpful > applications on Linux platforms. > > I have created a small basic interface for Fedora to change Plymouth theme. > But as changing theme requires to run some commands as root, I would like > to ask for root password before starting the application. > Similarly whenever we run 'system-config-boot' or other software that > requires root privileges. > > Please help me with detailed guidance as how I can achieve the result. > > > Thanks & Regards, Hi. I've attached a little example. It's just an interface to su. You don't need kdesu or gksu. The code is real simple. It asks for root password to execute 'su -c ls /root'. Take a look. Bye, Stefano > > Tajinder Singh > MD & CEO > IMP Technologies > [Affordable :: Quality :: Satisfaction] > Mb. : +91-9814943801 > Tel. : +91-161-2541944 > E-mail : imp.tsingh at ...626... > Web : http://www.imptechs.com > V-Card : http://www.imptechs.com/misc/IMPTechnologies_V-Card.jpg > --------------------------------------------------------------------------- >--- Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -------------- next part -------------- A non-text attachment was scrubbed... Name: su-0.0.2.tar.gz Type: application/x-tgz Size: 7993 bytes Desc: not available URL: From rterry at ...1946... Sun Oct 3 00:37:39 2010 From: rterry at ...1946... (richard terry) Date: Sun, 3 Oct 2010 09:37:39 +1100 Subject: [Gambas-user] Fwd: svn reorganisation In-Reply-To: <201010021559.33126.gambas@...1...> References: <201010022342.57178.rterry@...1946...> <201010021559.33126.gambas@...1...> Message-ID: <201010030937.39667.rterry@...1946...> On Saturday 02 October 2010 23:59:33 you wrote: > > Benoit, > > > > Can you read the comments Ian has made about problems with gambas making > > the exectutable from the contents of the svn. > > > > We've heaps of data files > > > > Could there be a way to set up gambas to exclude certain directories when > > making the executable? > > > > Regards > > > > Richard > > If you want to put a file inside your project that does not go inside the > executable, you must put it under the "Project" folder in the project tree > view. > > The "Project" folder is exactly like the "Data" folder, except that its > contents do not go inside the executable. > > Regards, > Thanks, will do that. Another question - which I've raised before, may be relevant to the above - excluding files from the search - does that mean also that anything in the project folder is excluded from the search? Regards richard From gambas at ...1... Sun Oct 3 13:01:51 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 13:01:51 +0200 Subject: [Gambas-user] Fwd: svn reorganisation In-Reply-To: <201010030937.39667.rterry@...1946...> References: <201010022342.57178.rterry@...1946...> <201010021559.33126.gambas@...1...> <201010030937.39667.rterry@...1946...> Message-ID: <201010031301.51406.gambas@...1...> > On Saturday 02 October 2010 23:59:33 you wrote: > > > Benoit, > > > > > > Can you read the comments Ian has made about problems with gambas > > > making the exectutable from the contents of the svn. > > > > > > We've heaps of data files > > > > > > Could there be a way to set up gambas to exclude certain directories > > > when making the executable? > > > > > > Regards > > > > > > Richard > > > > If you want to put a file inside your project that does not go inside the > > executable, you must put it under the "Project" folder in the project > > tree view. > > > > The "Project" folder is exactly like the "Data" folder, except that its > > contents do not go inside the executable. > > > > Regards, > > Thanks, will do that. > > Another question - which I've raised before, may be relevant to the above - > excluding files from the search - does that mean also that anything in the > project folder is excluded from the search? > Mmm, normally the project folder is not excluded from the search, why? -- Beno?t Minisini From jussi.lahtinen at ...626... Sun Oct 3 15:04:15 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Sun, 3 Oct 2010 16:04:15 +0300 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010021422.12120.rospolosco@...152...> References: <201010021422.12120.rospolosco@...152...> Message-ID: I looked your example just for interest. It doesn't seem to work with Ubuntu 10.04 64bit. There are two issues, maybe something with my system... This is first time I used "*su*" (normally I use sudo) on this computer, and it doesn't work... *su -c 'whoami'* gives; *su: Authentication failure* However *sudo whoami* works correctly. Because of that, I replaced *su -c 'ls /root'* with *sudo whoami*. But there is another problem. Shell doesn't wait for input for *su* or *sudo *. Result is *sudo: 3 incorrect password attempts*, before even textbox appears. Tested with Gambas2 revision 3124. Jussi On Sat, Oct 2, 2010 at 15:22, Stefano Palmeri wrote: > Il venerd? 1 ottobre 2010 21:27:39 IMP Technologies - Tajinder Singh ha > scritto: >> Hi all, >> >> I am new to Gambas but have done some projects in Visual Basic at college >> time. >> >> It is a good feeling to know about Gambas which I can use to create helpful >> applications on Linux platforms. >> >> I have created a small basic interface for Fedora to change Plymouth theme. >> But as changing theme requires to run some commands as root, I would like >> to ask for root password before starting the application. >> Similarly whenever we run 'system-config-boot' or other software that >> requires root privileges. >> >> Please help me with detailed guidance as how I can achieve the result. >> >> >> Thanks & Regards, > > Hi. > > I've attached a little example. It's just an interface to su. You don't > need kdesu or gksu. The code is real simple. It asks for root password > to execute 'su -c ls /root'. Take a look. > > Bye, > > Stefano > > > > > >> >> Tajinder Singh >> MD & CEO >> IMP Technologies >> [Affordable :: Quality :: Satisfaction] >> Mb. : +91-9814943801 >> Tel. : +91-161-2541944 >> E-mail : imp.tsingh at ...626... >> Web : http://www.imptechs.com >> V-Card : http://www.imptechs.com/misc/IMPTechnologies_V-Card.jpg >> --------------------------------------------------------------------------- >>--- Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing. >> http://p.sf.net/sfu/novell-sfdev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From gambas at ...1... Sun Oct 3 16:50:33 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 16:50:33 +0200 Subject: [Gambas-user] gambas3 ubuntu packages In-Reply-To: References: Message-ID: <201010031650.33706.gambas@...1...> > I have produced some draft ubuntu packages for gambas3, based on svn > revision 3246 > they are produced largely by taking the gambas2 debian packaging files > and replacing a lot of "2"s with "3"s > > some other changes: > > gambas2-gb-kde-html becomes gambas3-gb-qt-webkit > gambas3-gb-gtk-svg and gambas3-gb-corba don't exist: they don't seem to > produce libraries in the upstream svn. > gambas3-gb-db-firebird isn't packaged for licence issues as for the > gambas2 packages > gambas3-gb-dbus is added for the new DBus bindings. I'm going to update the "How To Package Gambas" page on the wiki. And gb.db.firebird will be removed from Gambas for the same reasons. > > they are complied against ubuntu 9.10 ("karmic koala"), I'm interested > to hear about how > they go on later ubuntu versions or other debian-based distros. > > to load add the following to your /etc/apt/sources.list: > > deb http://ppa.launchpad.net/ihaywood3/gambas3/ubuntu karmic main > deb-src http://ppa.launchpad.net/ihaywood3/gambas3/ubuntu karmic main > > > then do "sudo apt-get update ; sudo apt-get install gambas3" > > The version numbers don't mean anything, currently "0.2-1", I will update > the packages with svn at irregular intervals or when requested. > the major version will stay at 0 so that when official packages come out > they replace my packages. I suggest you use the revision number (0.3840) or the date (0.20101003) as version number. Regards, -- Beno?t Minisini From rospolosco at ...152... Sun Oct 3 17:18:51 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Sun, 3 Oct 2010 17:18:51 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: <201010021422.12120.rospolosco@...152...> Message-ID: <201010031718.52043.rospolosco@...152...> Il domenica 3 ottobre 2010 15:04:15 Jussi Lahtinen ha scritto: > I looked your example just for interest. > It doesn't seem to work with Ubuntu 10.04 64bit. > > There are two issues, maybe something with my system... > This is first time I used "*su*" (normally I use sudo) on this computer, > and it doesn't work... > *su -c 'whoami'* > gives; > *su: Authentication failure* > > However *sudo whoami* works correctly. > Because of that, I replaced *su -c 'ls /root'* with *sudo whoami*. > > But there is another problem. Shell doesn't wait for input for *su* or > *sudo *. > Result is *sudo: 3 incorrect password attempts*, before even textbox > appears. > > Tested with Gambas2 revision 3124. > Jussi > I made this example just for 'su'. with 'su' it works, at least while the textbox in not "". Anyway, good to know. Tested with: Gambas 2.20 Qt 3.3.8b Gtk 2.12.12 under KDE, so it uses gb.qt. Regards. > On Sat, Oct 2, 2010 at 15:22, Stefano Palmeri wrote: > > Il venerd? 1 ottobre 2010 21:27:39 IMP Technologies - Tajinder Singh ha > > > > scritto: > >> Hi all, > >> > >> I am new to Gambas but have done some projects in Visual Basic at > >> college time. > >> > >> It is a good feeling to know about Gambas which I can use to create > > helpful > > >> applications on Linux platforms. > >> > >> I have created a small basic interface for Fedora to change Plymouth > > theme. > > >> But as changing theme requires to run some commands as root, I would > >> like to ask for root password before starting the application. > >> Similarly whenever we run 'system-config-boot' or other software that > >> requires root privileges. > >> > >> Please help me with detailed guidance as how I can achieve the result. > >> > >> > >> Thanks & Regards, > > > > Hi. > > > > I've attached a little example. It's just an interface to su. You don't > > need kdesu or gksu. The code is real simple. It asks for root password > > to execute 'su -c ls /root'. Take a look. > > > > Bye, > > > > Stefano > > > >> Tajinder Singh > >> MD & CEO > >> IMP Technologies > >> [Affordable :: Quality :: Satisfaction] > >> Mb. : +91-9814943801 > >> Tel. : +91-161-2541944 > >> E-mail : imp.tsingh at ...626... > >> Web : http://www.imptechs.com > >> V-Card : http://www.imptechs.com/misc/IMPTechnologies_V-Card.jpg > > --------------------------------------------------------------------------- > > >>--- Start uncovering the many advantages of virtual appliances > >> and start using them to simplify application deployment and > >> accelerate your shift to cloud computing. > >> http://p.sf.net/sfu/novell-sfdev2dev > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > --------------------------------------------------------------------------- >--- > > > Start uncovering the many advantages of virtual appliances > > and start using them to simplify application deployment and > > accelerate your shift to cloud computing. > > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > --------------------------------------------------------------------------- >--- Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Sun Oct 3 17:25:46 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 17:25:46 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010031718.52043.rospolosco@...152...> References: <201010031718.52043.rospolosco@...152...> Message-ID: <201010031725.46547.gambas@...1...> > Il domenica 3 ottobre 2010 15:04:15 Jussi Lahtinen ha scritto: > > I looked your example just for interest. > > It doesn't seem to work with Ubuntu 10.04 64bit. > > > > There are two issues, maybe something with my system... > > This is first time I used "*su*" (normally I use sudo) on this computer, > > and it doesn't work... > > *su -c 'whoami'* > > gives; > > *su: Authentication failure* > > > > However *sudo whoami* works correctly. > > Because of that, I replaced *su -c 'ls /root'* with *sudo whoami*. > > > > But there is another problem. Shell doesn't wait for input for *su* or > > *sudo *. > > Result is *sudo: 3 incorrect password attempts*, before even textbox > > appears. > > > > Tested with Gambas2 revision 3124. > > Jussi > > I made this example just for 'su'. with 'su' it works, at least while > the textbox in not "". Anyway, good to know. > > Tested with: > > Gambas 2.20 > Qt 3.3.8b > Gtk 2.12.12 > > under KDE, so it uses gb.qt. > > Regards. > That is exactly the kind of examples you should put with the other gambas examples! -- Beno?t Minisini From gambas at ...1... Sun Oct 3 17:27:36 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 17:27:36 +0200 Subject: [Gambas-user] Gambas3 :: Method signature and documentation In-Reply-To: <005401cb5f1d$106d7410$31485c30$@gmail.com> References: <003901cb5e8b$d0616520$71242f60$@gmail.com> <201009280654.48819.gambas@...1...> <005401cb5f1d$106d7410$31485c30$@gmail.com> Message-ID: <201010031727.36337.gambas@...1...> > :-) You put me in troubles because of my little english > > I have a class with a method, this method has 8 arguments. Whe I use that > method, the mini window that appears says me wath argument I am coding. > This mini window was corrected in revision 3241 "* BUG: Method signature > can be displayed on several lines if needed.". I put this only for > reference. > > When I use my method on a test form, the mini window with method signature > appears correctly, no problem, but... > > I compiled my component and make an executable and then I create a new > project and I use my compiled class and the project runs correctly, but > the mini window doesn't appears when I use any method on any class of my > component. > Do you make a true "component" or just an executable that you use as a library? And ensure that the classes you want to see in the signature are exported. Otherwise you won't see them! Regards, -- Beno?t Minisini From gambas at ...1... Sun Oct 3 17:31:04 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 17:31:04 +0200 Subject: [Gambas-user] Form.ShowModal in Gambas3 In-Reply-To: <201009282355.20555.gambas@...1...> References: <4CA0F93F.3010304@...221...> <4CA2376C.2060606@...221...> <201009282355.20555.gambas@...1...> Message-ID: <201010031731.04299.gambas@...1...> > > Seems to be ok now, example works fine. > > I will have an eye on it and tell you if I encounter new problems. > > > > btw: Why has a modal window a Minimize button at all? > > I always thought that "modal" means the user has to do something, and no > > other action is allowed? > > Because you are not on Windows. The window manager manages the window > decorations, and so it does not care how the application manages the events > of its windows (modal or not modal). And be happy that there is a minimize button on modal forms that allows you to see what there is behind when you need it! Regards, -- Beno?t Minisini From jussi.lahtinen at ...626... Sun Oct 3 18:46:38 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Sun, 3 Oct 2010 19:46:38 +0300 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010031718.52043.rospolosco@...152...> References: <201010021422.12120.rospolosco@...152...> <201010031718.52043.rospolosco@...152...> Message-ID: No, with Ubuntu 10.04 it does not work. Textbox.Text is "", because shell is executed before textbox is even shown. Your original code gives result: *Password: Password: su: Authentication failure* Then form appears, and after that when write password and click "confirm", you will get error message from gambas "System error. Bad file descriptor". Error is given from line: *PRINT #hProcess, TextBox1.Text* Jussi On Sun, Oct 3, 2010 at 18:18, Stefano Palmeri wrote: > Il domenica 3 ottobre 2010 15:04:15 Jussi Lahtinen ha scritto: > > I looked your example just for interest. > > It doesn't seem to work with Ubuntu 10.04 64bit. > > > > There are two issues, maybe something with my system... > > This is first time I used "*su*" (normally I use sudo) on this computer, > > and it doesn't work... > > *su -c 'whoami'* > > gives; > > *su: Authentication failure* > > > > However *sudo whoami* works correctly. > > Because of that, I replaced *su -c 'ls /root'* with *sudo whoami*. > > > > But there is another problem. Shell doesn't wait for input for *su* or > > *sudo *. > > Result is *sudo: 3 incorrect password attempts*, before even textbox > > appears. > > > > Tested with Gambas2 revision 3124. > > Jussi > > > > I made this example just for 'su'. with 'su' it works, at least while > the textbox in not "". Anyway, good to know. > > Tested with: > > Gambas 2.20 > Qt 3.3.8b > Gtk 2.12.12 > > under KDE, so it uses gb.qt. > > Regards. > > > > > > > On Sat, Oct 2, 2010 at 15:22, Stefano Palmeri > wrote: > > > Il venerd? 1 ottobre 2010 21:27:39 IMP Technologies - Tajinder Singh ha > > > > > > scritto: > > >> Hi all, > > >> > > >> I am new to Gambas but have done some projects in Visual Basic at > > >> college time. > > >> > > >> It is a good feeling to know about Gambas which I can use to create > > > > helpful > > > > >> applications on Linux platforms. > > >> > > >> I have created a small basic interface for Fedora to change Plymouth > > > > theme. > > > > >> But as changing theme requires to run some commands as root, I would > > >> like to ask for root password before starting the application. > > >> Similarly whenever we run 'system-config-boot' or other software that > > >> requires root privileges. > > >> > > >> Please help me with detailed guidance as how I can achieve the result. > > >> > > >> > > >> Thanks & Regards, > > > > > > Hi. > > > > > > I've attached a little example. It's just an interface to su. You don't > > > need kdesu or gksu. The code is real simple. It asks for root password > > > to execute 'su -c ls /root'. Take a look. > > > > > > Bye, > > > > > > Stefano > > > > > >> Tajinder Singh > > >> MD & CEO > > >> IMP Technologies > > >> [Affordable :: Quality :: Satisfaction] > > >> Mb. : +91-9814943801 > > >> Tel. : +91-161-2541944 > > >> E-mail : imp.tsingh at ...626... > > >> Web : http://www.imptechs.com > > >> V-Card : http://www.imptechs.com/misc/IMPTechnologies_V-Card.jpg > > > > > --------------------------------------------------------------------------- > > > > >>--- Start uncovering the many advantages of virtual appliances > > >> and start using them to simplify application deployment and > > >> accelerate your shift to cloud computing. > > >> http://p.sf.net/sfu/novell-sfdev2dev > > >> _______________________________________________ > > >> Gambas-user mailing list > > >> Gambas-user at lists.sourceforge.net > > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > --------------------------------------------------------------------------- > >--- > > > > > Start uncovering the many advantages of virtual appliances > > > and start using them to simplify application deployment and > > > accelerate your shift to cloud computing. > > > http://p.sf.net/sfu/novell-sfdev2dev > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > --------------------------------------------------------------------------- > >--- Start uncovering the many advantages of virtual appliances > > and start using them to simplify application deployment and > > accelerate your shift to cloud computing. > > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From rospolosco at ...152... Sun Oct 3 19:05:02 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Sun, 3 Oct 2010 19:05:02 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: <201010031718.52043.rospolosco@...152...> Message-ID: <201010031905.03474.rospolosco@...152...> Il domenica 3 ottobre 2010 18:46:38 Jussi Lahtinen ha scritto: > No, with Ubuntu 10.04 it does not work. > Textbox.Text is "", because shell is executed before textbox is even shown. > > Your original code gives result: > *Password: > Password: > su: Authentication failure* > Then form appears, and after that when write password and click "confirm", > you will get error message from gambas "System error. Bad file descriptor". > Error is given from line: > *PRINT #hProcess, TextBox1.Text* > > Jussi Well, I'm on Slackware 32 bit. I switch the code to gb.gtk and still works here. I don't know. Maybe a Ubuntu 64 bit issue? >Then form appears, and after that when write password and click "confirm", > you will get error message from gambas "System error. Bad file descriptor". I get this error when I try a second time, because after the first try the code inside Form_Open is not run again. It was an example on the fly to show howto su. Change the Button_Click code to: PUBLIC SUB Button1_Click() PRINT #hProcess, TextBox1.Text WAIT TRY hProcess.Kill hProcess = SHELL "su -c 'ls /root'" FOR INPUT OUTPUT END This should fix the Bad descriptor error. For the first error I suppose is something with 64 bit. don't know. > > On Sun, Oct 3, 2010 at 18:18, Stefano Palmeri wrote: > > Il domenica 3 ottobre 2010 15:04:15 Jussi Lahtinen ha scritto: > > > I looked your example just for interest. > > > It doesn't seem to work with Ubuntu 10.04 64bit. > > > > > > There are two issues, maybe something with my system... > > > This is first time I used "*su*" (normally I use sudo) on this > > > computer, and it doesn't work... > > > *su -c 'whoami'* > > > gives; > > > *su: Authentication failure* > > > > > > However *sudo whoami* works correctly. > > > Because of that, I replaced *su -c 'ls /root'* with *sudo whoami*. > > > > > > But there is another problem. Shell doesn't wait for input for *su* or > > > *sudo *. > > > Result is *sudo: 3 incorrect password attempts*, before even textbox > > > appears. > > > > > > Tested with Gambas2 revision 3124. > > > Jussi > > > > I made this example just for 'su'. with 'su' it works, at least while > > the textbox in not "". Anyway, good to know. > > > > Tested with: > > > > Gambas 2.20 > > Qt 3.3.8b > > Gtk 2.12.12 > > > > under KDE, so it uses gb.qt. > > > > Regards. > > > > > On Sat, Oct 2, 2010 at 15:22, Stefano Palmeri > > > > wrote: > > > > Il venerd? 1 ottobre 2010 21:27:39 IMP Technologies - Tajinder Singh > > > > ha > > > > > > > > scritto: > > > >> Hi all, > > > >> > > > >> I am new to Gambas but have done some projects in Visual Basic at > > > >> college time. > > > >> > > > >> It is a good feeling to know about Gambas which I can use to create > > > > > > helpful > > > > > > >> applications on Linux platforms. > > > >> > > > >> I have created a small basic interface for Fedora to change Plymouth > > > > > > theme. > > > > > > >> But as changing theme requires to run some commands as root, I would > > > >> like to ask for root password before starting the application. > > > >> Similarly whenever we run 'system-config-boot' or other software > > > >> that requires root privileges. > > > >> > > > >> Please help me with detailed guidance as how I can achieve the > > > >> result. > > > >> > > > >> > > > >> Thanks & Regards, > > > > > > > > Hi. > > > > > > > > I've attached a little example. It's just an interface to su. You > > > > don't need kdesu or gksu. The code is real simple. It asks for root > > > > password to execute 'su -c ls /root'. Take a look. > > > > > > > > Bye, > > > > > > > > Stefano > > > > > > > >> Tajinder Singh > > > >> MD & CEO > > > >> IMP Technologies > > > >> [Affordable :: Quality :: Satisfaction] > > > >> Mb. : +91-9814943801 > > > >> Tel. : +91-161-2541944 > > > >> E-mail : imp.tsingh at ...626... > > > >> Web : http://www.imptechs.com > > > >> V-Card : http://www.imptechs.com/misc/IMPTechnologies_V-Card.jpg > > > > ------------------------------------------------------------------------- > >-- > > > > > >>--- Start uncovering the many advantages of virtual appliances > > > >> and start using them to simplify application deployment and > > > >> accelerate your shift to cloud computing. > > > >> http://p.sf.net/sfu/novell-sfdev2dev > > > >> _______________________________________________ > > > >> Gambas-user mailing list > > > >> Gambas-user at lists.sourceforge.net > > > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > >-- > > > > >--- > > > > > > > Start uncovering the many advantages of virtual appliances > > > > and start using them to simplify application deployment and > > > > accelerate your shift to cloud computing. > > > > http://p.sf.net/sfu/novell-sfdev2dev > > > > _______________________________________________ > > > > Gambas-user mailing list > > > > Gambas-user at lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > >-- > > > > >--- Start uncovering the many advantages of virtual appliances > > > and start using them to simplify application deployment and > > > accelerate your shift to cloud computing. > > > http://p.sf.net/sfu/novell-sfdev2dev > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > >----- Start uncovering the many advantages of virtual appliances > > and start using them to simplify application deployment and > > accelerate your shift to cloud computing. > > http://p.sf.net/sfu/novell-sfdev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > --------------------------------------------------------------------------- >--- Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Sun Oct 3 19:16:16 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 19:16:16 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010031905.03474.rospolosco@...152...> References: <201010031905.03474.rospolosco@...152...> Message-ID: <201010031916.16833.gambas@...1...> > Il domenica 3 ottobre 2010 18:46:38 Jussi Lahtinen ha scritto: > > No, with Ubuntu 10.04 it does not work. > > Textbox.Text is "", because shell is executed before textbox is even > > shown. > > > > Your original code gives result: > > *Password: > > Password: > > su: Authentication failure* > > Then form appears, and after that when write password and click > > "confirm", you will get error message from gambas "System error. Bad > > file descriptor". Error is given from line: > > *PRINT #hProcess, TextBox1.Text* > > > > Jussi > > Well, I'm on Slackware 32 bit. I switch the code to gb.gtk and still works > here. I don't know. Maybe a Ubuntu 64 bit issue? > > >Then form appears, and after that when write password and click "confirm", > > > > you will get error message from gambas "System error. Bad file > > descriptor". > > I get this error when I try a second time, because after the first try > the code inside Form_Open is not run again. It was an example on the fly > to show howto su. > > Change the Button_Click code to: > > PUBLIC SUB Button1_Click() > > PRINT #hProcess, TextBox1.Text > WAIT > TRY hProcess.Kill > hProcess = SHELL "su -c 'ls /root'" FOR INPUT OUTPUT > > END > > This should fix the Bad descriptor error. For the first error I suppose is > something with 64 bit. don't know. > Can I see the project? -- Beno?t Minisini From jussi.lahtinen at ...626... Sun Oct 3 19:21:28 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Sun, 3 Oct 2010 20:21:28 +0300 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010031916.16833.gambas@...1...> References: <201010031905.03474.rospolosco@...152...> <201010031916.16833.gambas@...1...> Message-ID: It is attached to first mail from Stefano. Jussi 2010/10/3 Beno?t Minisini > > Il domenica 3 ottobre 2010 18:46:38 Jussi Lahtinen ha scritto: > > > No, with Ubuntu 10.04 it does not work. > > > Textbox.Text is "", because shell is executed before textbox is even > > > shown. > > > > > > Your original code gives result: > > > *Password: > > > Password: > > > su: Authentication failure* > > > Then form appears, and after that when write password and click > > > "confirm", you will get error message from gambas "System error. Bad > > > file descriptor". Error is given from line: > > > *PRINT #hProcess, TextBox1.Text* > > > > > > Jussi > > > > Well, I'm on Slackware 32 bit. I switch the code to gb.gtk and still > works > > here. I don't know. Maybe a Ubuntu 64 bit issue? > > > > >Then form appears, and after that when write password and click > "confirm", > > > > > > you will get error message from gambas "System error. Bad file > > > descriptor". > > > > I get this error when I try a second time, because after the first try > > the code inside Form_Open is not run again. It was an example on the fly > > to show howto su. > > > > Change the Button_Click code to: > > > > PUBLIC SUB Button1_Click() > > > > PRINT #hProcess, TextBox1.Text > > WAIT > > TRY hProcess.Kill > > hProcess = SHELL "su -c 'ls /root'" FOR INPUT OUTPUT > > > > END > > > > This should fix the Bad descriptor error. For the first error I suppose > is > > something with 64 bit. don't know. > > > > Can I see the project? > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From ea7dfh at ...2382... Sun Oct 3 20:20:27 2010 From: ea7dfh at ...2382... (EA7DFH) Date: Sun, 03 Oct 2010 20:20:27 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: <201010031905.03474.rospolosco@...152...> <201010031916.16833.gambas@...1...> Message-ID: <4CA8C96B.5010804@...2382...> El 03/10/10 19:21, Jussi Lahtinen escribi?: > It is attached to first mail from Stefano. > > Jussi > > > 2010/10/3 Beno?t Minisini > >>> Il domenica 3 ottobre 2010 18:46:38 Jussi Lahtinen ha scritto: >>>> No, with Ubuntu 10.04 it does not work. >>>> Textbox.Text is "", because shell is executed before textbox is even >>>> shown. >>>> >>>> Your original code gives result: >>>> *Password: >>>> Password: >>>> su: Authentication failure* >>>> Then form appears, and after that when write password and click >>>> "confirm", you will get error message from gambas "System error. Bad >>>> file descriptor". Error is given from line: >>>> *PRINT #hProcess, TextBox1.Text* >>>> >>>> Jussi >>> >>> Well, I'm on Slackware 32 bit. I switch the code to gb.gtk and still >> works >>> here. I don't know. Maybe a Ubuntu 64 bit issue? >>> >>>> Then form appears, and after that when write password and click >> "confirm", >>>> >>>> you will get error message from gambas "System error. Bad file >>>> descriptor". >>> >>> I get this error when I try a second time, because after the first try >>> the code inside Form_Open is not run again. It was an example on the fly >>> to show howto su. >>> >>> Change the Button_Click code to: >>> >>> PUBLIC SUB Button1_Click() >>> >>> PRINT #hProcess, TextBox1.Text >>> WAIT >>> TRY hProcess.Kill >>> hProcess = SHELL "su -c 'ls /root'" FOR INPUT OUTPUT >>> >>> END >>> >>> This should fix the Bad descriptor error. For the first error I suppose >> is >>> something with 64 bit. don't know. >>> >> >> Can I see the project? >> >> -- >> Beno?t Minisini Please, try the following code and tell us if it works for you: PRIVATE $hprocess AS Process PUBLIC SUB Form_Open() DIM pwd AS String pwd = InputBox("Type your root password", "Root privileges needed") IF pwd THEN $hprocess = SHELL Subst("echo &1 | sudo -S ls /root", pwd) FOR READ ELSE RETURN ENDIF END PUBLIC SUB Process_Read() DIM outstr AS String WHILE NOT Eof($hprocess) LINE INPUT #$hprocess, outstr PRINT outstr WEND END The only drawback is that passwords in the inputbox are not hidden. Regards, -- Jesus, EA7DFH From gambas at ...1... Sun Oct 3 21:27:17 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 21:27:17 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: <201010031916.16833.gambas@...1...> Message-ID: <201010032127.17905.gambas@...1...> > It is attached to first mail from Stefano. > > Jussi > I didn't receive the first mail from Stefano, strange... -- Beno?t Minisini From jussi.lahtinen at ...626... Sun Oct 3 21:39:43 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Sun, 3 Oct 2010 22:39:43 +0300 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010032127.17905.gambas@...1...> References: <201010031916.16833.gambas@...1...> <201010032127.17905.gambas@...1...> Message-ID: OK, here it is. Jussi 2010/10/3 Beno?t Minisini > > It is attached to first mail from Stefano. > > > > Jussi > > > > I didn't receive the first mail from Stefano, strange... > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Virtualization is moving to the mainstream and overtaking non-virtualized > environment for deploying applications. Does it make network security > easier or more difficult to achieve? Read this whitepaper to separate the > two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -------------- next part -------------- A non-text attachment was scrubbed... Name: su-0.0.2.tar.gz Type: application/x-gzip Size: 7993 bytes Desc: not available URL: From jussi.lahtinen at ...626... Sun Oct 3 21:46:22 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Sun, 3 Oct 2010 22:46:22 +0300 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <4CA8C96B.5010804@...2382...> References: <201010031905.03474.rospolosco@...152...> <201010031916.16833.gambas@...1...> <4CA8C96B.5010804@...2382...> Message-ID: Works as excepted, no surprises here. Problem is how to make shell wait for input. Jussi Please, try the following code and tell us if it works for you: > > > PRIVATE $hprocess AS Process > > PUBLIC SUB Form_Open() > DIM pwd AS String > > pwd = InputBox("Type your root password", "Root privileges needed") > IF pwd THEN > $hprocess = SHELL Subst("echo &1 | sudo -S ls /root", pwd) FOR READ > ELSE > RETURN > ENDIF > END > > PUBLIC SUB Process_Read() > DIM outstr AS String > > WHILE NOT Eof($hprocess) > LINE INPUT #$hprocess, outstr > PRINT outstr > WEND > > END > > The only drawback is that passwords in the inputbox are not hidden. > > Regards, > > > -- > Jesus, EA7DFH > > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jussi.lahtinen at ...626... Sun Oct 3 22:01:50 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Sun, 3 Oct 2010 23:01:50 +0300 Subject: [Gambas-user] Serialization Message-ID: Hi! I spotted these lines from svn log: [INTERPRETER] * NEW: The READ instruction can read arrays and collections with 'AS Object' as well as 'AS Variant'. [INTERPRETER] * NEW: WRITE and READ instructions can handle collections and arrays. Call that "serialization". Can you give me example how this works? Example, I have two dimensional arrays, how do I read them from file with this new way? Jussi From gambas at ...1... Sun Oct 3 22:09:28 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 3 Oct 2010 22:09:28 +0200 Subject: [Gambas-user] Serialization In-Reply-To: References: Message-ID: <201010032209.28561.gambas@...1...> > Hi! > I spotted these lines from svn log: > > [INTERPRETER] > * NEW: The READ instruction can read arrays and collections with > 'AS Object' as well as 'AS Variant'. > > [INTERPRETER] > * NEW: WRITE and READ instructions can handle collections and arrays. Call > that "serialization". > > > Can you give me example how this works? > Example, I have two dimensional arrays, how do I read them from file with > this new way? > > Jussi Bad luck, it works for single dimension arrays only. It works like that: Dim MyArray As String[] ' Write the array to a stream Write #Stream, MyArray As Object ' Read it back later MyArray = Read #Stream As Object Regards, -- Beno?t Minisini From barneywinton at ...867... Mon Oct 4 02:44:29 2010 From: barneywinton at ...867... (Barnett Winton) Date: Mon, 04 Oct 2010 11:44:29 +1100 Subject: [Gambas-user] SQLite 3 and Gambas 2.20 Message-ID: <4CA9236D.10500@...867...> Hi everyone, I have recently discovered Gambas and am using it on a PCLinuxOS 2010 distribution. I have used SQLite databases under VB and RealBasic but am kindof stumped with SQLite3. I am writing a Ham radio Logger App and I need to check the DB tables etc on loading the App. I have been able to create a DB file and 5 tables but when I go to check whether the Tables exist, my code always returns a FALSE ( ie; could not find nominated Table). I can see them in the FireFox SQLite DB manager. BTW where can I get the Gambas DB Manager ? I used the Example code to start with but am getting hung up on the RESULT data type and how to use it. IF NOT $hConn.Tables.Exist("Contests") THEN RETURN FALSE END IF always returns false. $strSQL = "select name from sqlite_master WHERE type = 'table'" $Res = $hConn.Exec($strSQL) populates the result variable with 5 entries ( I have 5 tables created). I am a bit confused as it appears that SQLite3 holds the individual tables in the sqlite_master table. How do I get to open/find individual tables in a SQLite3 DB ? Regards, Barney From rterry at ...1946... Mon Oct 4 06:08:25 2010 From: rterry at ...1946... (richard terry) Date: Mon, 4 Oct 2010 15:08:25 +1100 Subject: [Gambas-user] setting columnview column sizes Message-ID: <201010041508.25336.rterry@...1946...> Having wasted a couple of frustrating hours on this simple task, I thought I'd ask the list. I have a 3 column column view. I want to set the sizes of this to a user- defined width (I've put in the code to save this ok), but for the moment to be concete lets say these are the values: If I put this up the top of my subroutine: cvwResults.Columns[0].width = 70 cvwResults.Columns[1].width = 179 cvwResults.Columns[2].width = 180 Then load the columnview with data: x = results_received!pk_document cvwResults.Add(x, 0) cvwResults[x][0] = Format(results_received!date_created, "dd/mm/yyyy") cvwResults[x][1] = result_received 'results_received!tag_user cvwResults[x][2] = results_received!originator Then the column widths as re-set and the columnview expands the columns to whatever it wants, as dictated by the widest bit of data . Any help appreciated as I'm about to slit my wrists over this one!!!!! I would have thought it was simple. I looked at all the columnview properties to no avail. Regards ricahrd From office.zolano at ...626... Mon Oct 4 11:02:28 2010 From: office.zolano at ...626... (Zoltan Biro) Date: Mon, 4 Oct 2010 12:02:28 +0300 Subject: [Gambas-user] Textbox - Valuebox Message-ID: Hello everybody.. Can somebody told me how I can make the cursor to leave textbox with a simple key? By defaul I can leave these controls only with the tab or directional keys..this is very unconfortable. Thank you for your answer in advance. Best regards, Zoli B. From johny.provoost at ...27... Mon Oct 4 11:15:43 2010 From: johny.provoost at ...27... (Johny Provoost) Date: Mon, 04 Oct 2010 11:15:43 +0200 Subject: [Gambas-user] Textbox - Valuebox In-Reply-To: References: Message-ID: <4CA99B3F.3000308@...27...> Op 04-10-10 11:02, Zoltan Biro schreef: > Hello everybody.. > > Can somebody told me how I can make the cursor to leave textbox > with a simple key? > By defaul I can leave these controls only with the tab or directional > keys..this is very unconfortable. > Thank you for your answer in advance. > > Best regards, > Zoli B. > > ------------------------------------------------------------------------------ > Virtualization is moving to the mainstream and overtaking non-virtualized > environment for deploying applications. Does it make network security > easier or more difficult to achieve? Read this whitepaper to separate the > two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > look in the sub txtfield_KeyPress if the key.code is Enter or Return then you can do someting. In my example a button is automatically pressed. PUBLIC SUB txtZoek_KeyPress() IF Key.Code = Key.Enter OR Key.Code = Key.Return THEN ZoekAdres.btZoek.Value = 1 ENDIF END Greetings, Johny From gambas at ...1... Mon Oct 4 12:06:47 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 4 Oct 2010 12:06:47 +0200 Subject: [Gambas-user] SQLite 3 and Gambas 2.20 In-Reply-To: <4CA9236D.10500@...867...> References: <4CA9236D.10500@...867...> Message-ID: <201010041206.47886.gambas@...1...> > Hi everyone, > I have recently discovered Gambas and am using it on a PCLinuxOS 2010 > distribution. > I have used SQLite databases under VB and RealBasic but am kindof > stumped with SQLite3. > I am writing a Ham radio Logger App and I need to check the DB tables > etc on loading the App. > > I have been able to create a DB file and 5 tables but when I go to check > whether the Tables exist, my code always returns a FALSE ( ie; could not > find nominated Table). > > I can see them in the FireFox SQLite DB manager. BTW where can I get > the Gambas DB Manager ? > > I used the Example code to start with but am getting hung up on the > RESULT data type and how to use it. > > IF NOT $hConn.Tables.Exist("Contests") THEN > RETURN FALSE > END IF > > always returns false. > > $strSQL = "select name from sqlite_master WHERE type = 'table'" > $Res = $hConn.Exec($strSQL) > > populates the result variable with 5 entries ( I have 5 tables created). > > I am a bit confused as it appears that SQLite3 holds the individual > tables in the sqlite_master table. > > How do I get to open/find individual tables in a SQLite3 DB ? > > Regards, > > Barney It should work. The database example uses the same code. Can you provide your project, the one that has the problem? Thanks. -- Beno?t Minisini From eilert-sprachen at ...221... Mon Oct 4 12:15:13 2010 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Mon, 04 Oct 2010 12:15:13 +0200 Subject: [Gambas-user] setting columnview column sizes In-Reply-To: <201010041508.25336.rterry@...1946...> References: <201010041508.25336.rterry@...1946...> Message-ID: <4CA9A931.2010903@...221...> Am 04.10.2010 06:08, schrieb richard terry: > Having wasted a couple of frustrating hours on this simple task, I thought I'd > ask the list. > > I have a 3 column column view. I want to set the sizes of this to a user- > defined width (I've put in the code to save this ok), but for the moment to be > concete lets say these are the values: > > If I put this up the top of my subroutine: > > cvwResults.Columns[0].width = 70 > cvwResults.Columns[1].width = 179 > cvwResults.Columns[2].width = 180 > > Then load the columnview with data: > > x = results_received!pk_document > cvwResults.Add(x, 0) > cvwResults[x][0] = Format(results_received!date_created, > "dd/mm/yyyy") > cvwResults[x][1] = result_received 'results_received!tag_user > cvwResults[x][2] = results_received!originator > > Then the column widths as re-set and the columnview expands the columns to > whatever it wants, as dictated by the widest bit of data . > > Any help appreciated as I'm about to slit my wrists over this one!!!!! I would > have thought it was simple. I looked at all the columnview properties to no > avail. > > Regards > > ricahrd Just a guess: Try setting the column width AFTER filling them. Does that help? Regards Rolf From rterry at ...1946... Mon Oct 4 13:37:02 2010 From: rterry at ...1946... (richard terry) Date: Mon, 4 Oct 2010 22:37:02 +1100 Subject: [Gambas-user] setting columnview column sizes In-Reply-To: <4CA9A931.2010903@...221...> References: <201010041508.25336.rterry@...1946...> <4CA9A931.2010903@...221...> Message-ID: <201010042237.02818.rterry@...1946...> On Monday 04 October 2010 21:15:13 Rolf-Werner Eilert wrote: > Am 04.10.2010 06:08, schrieb richard terry: > > Having wasted a couple of frustrating hours on this simple task, I > > thought I'd ask the list. > > > > I have a 3 column column view. I want to set the sizes of this to a user- > > defined width (I've put in the code to save this ok), but for the moment > > to be concete lets say these are the values: > > > > If I put this up the top of my subroutine: > > > > cvwResults.Columns[0].width = 70 > > cvwResults.Columns[1].width = 179 > > cvwResults.Columns[2].width = 180 > > > > Then load the columnview with data: > > > > x = results_received!pk_document > > cvwResults.Add(x, 0) > > cvwResults[x][0] = Format(results_received!date_created, > > "dd/mm/yyyy") > > cvwResults[x][1] = result_received 'results_received!tag_user > > cvwResults[x][2] = results_received!originator > > > > Then the column widths as re-set and the columnview expands the columns > > to whatever it wants, as dictated by the widest bit of data . > > > > Any help appreciated as I'm about to slit my wrists over this one!!!!! I > > would have thought it was simple. I looked at all the columnview > > properties to no avail. > > > > Regards > > > > ricahrd > > Just a guess: Try setting the column width AFTER filling them. Does that Not at all, one can try alot of combinations and permutations when struggling for an hour. Regards Richard > help? > > Regards > > Rolf > > > --------------------------------------------------------------------------- > --- Virtualization is moving to the mainstream and overtaking > non-virtualized environment for deploying applications. Does it make > network security easier or more difficult to achieve? Read this whitepaper > to separate the two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From barneywinton at ...867... Mon Oct 4 14:16:10 2010 From: barneywinton at ...867... (Barnett Winton) Date: Mon, 04 Oct 2010 23:16:10 +1100 Subject: [Gambas-user] re SQLITE3 and GAMBAS Message-ID: <4CA9C58A.6020001@...867...> Benito, Thanks for the prompt reply. I have taken out of the project unnecessary forms to reduce the size of the project. The database that has been created is included. Decompress the tar.bz2 file > open the project in Gambas II > set a breakpoint in modDatabase.Module(function CheckTable() > run using debug. The main screen should appear without any problems. select menu item File > Database > DatabaseCheck. The app will run to the breakpoint. Stepping thru the code will show the execution path. I am using this function to check that my eventual database contains all the relevant tables. If you remove LinuxLogs.sqlite from the directory and rerun the app under debug. The database file will be created ( see Fmain.class code ) and because modDatabase.CheckTable fails to find the non existant table, it will create the tables ( verified using firefox sqlite db manager). This happened b4 i inserted the lines starting "$Result = to line starting "NEXT". ( this code may be quite nonsensical as I am experimenting with code in an attempt to get the correct code. this may also apply to the SQL string. ) The problem now is that when checking the tables in FdbCheck, the tables are not reported as being found. This is my first App using Gambas and it has been quite a refreshing RAD system to use. REALBASIC aslo use SQlite database as their embedded DB and I am used to doing all my coded DB code in SQL statements. Regards, Barnett Winton VK3XBW -------------- next part -------------- A non-text attachment was scrubbed... Name: LinuxLog.tar.bz2 Type: application/octet-stream Size: 27666 bytes Desc: not available URL: From office.zolano at ...626... Mon Oct 4 14:55:00 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Mon, 04 Oct 2010 15:55:00 +0300 Subject: [Gambas-user] Textbox - Valuebox In-Reply-To: <4CA99B3F.3000308@...27...> References: <4CA99B3F.3000308@...27...> Message-ID: <1286196900.2153.3.camel@...2492...> Thank you very much Johny! BUT! I can evaluate the key pressed with keypress event, but I cannot make the cursor to leave this textbox and to move to the next textbox. My example: PUBLIC SUB factura_KeyPress() IF Key.Code = Key.Enter OR Key.Code = Key.Return THEN ' here is neccesary a command for the cursor to leave the current object and to move to next object. ENDIF END Is a function or command to make this? Is a system variable where I can increase the number of the current object? Regards, Zoly B. 2010. 10. 4, h?tf? keltez?ssel 11.15-kor Johny Provoost ezt ?rta: > Op 04-10-10 11:02, Zoltan Biro schreef: > > Hello everybody.. > > > > Can somebody told me how I can make the cursor to leave textbox > > with a simple key? > > By defaul I can leave these controls only with the tab or directional > > keys..this is very unconfortable. > > Thank you for your answer in advance. > > > > Best regards, > > Zoli B. > > > > ------------------------------------------------------------------------------ > > Virtualization is moving to the mainstream and overtaking non-virtualized > > environment for deploying applications. Does it make network security > > easier or more difficult to achieve? Read this whitepaper to separate the > > two and get a better understanding. > > http://p.sf.net/sfu/hp-phase2-d2d > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > look in the sub txtfield_KeyPress > if the key.code is Enter or Return then you can do someting. In my > example a button is automatically pressed. > > PUBLIC SUB txtZoek_KeyPress() > IF Key.Code = Key.Enter OR Key.Code = Key.Return THEN > ZoekAdres.btZoek.Value = 1 > ENDIF > END > > Greetings, > Johny > > ------------------------------------------------------------------------------ > Virtualization is moving to the mainstream and overtaking non-virtualized > environment for deploying applications. Does it make network security > easier or more difficult to achieve? Read this whitepaper to separate the > two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From office.zolano at ...626... Mon Oct 4 15:31:32 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Mon, 04 Oct 2010 16:31:32 +0300 Subject: [Gambas-user] Textbox-valuebox objects Message-ID: <1286199092.1993.4.camel@...2492...> Hi all! I evaluated the last key pressed in a valuebox with the keypress event. If the value of the key pressed is I wish to make the cursor to leave the current valuebox and to move to next object (a value box or command button etc.) How can I make this? Is a method to set the focus to an another object? Thank you. Best regards, Zoli B. From oceanosoftlapalma at ...626... Mon Oct 4 15:36:17 2010 From: oceanosoftlapalma at ...626... (=?ISO-8859-1?Q?Ricardo_D=EDaz_Mart=EDn?=) Date: Mon, 4 Oct 2010 15:36:17 +0200 Subject: [Gambas-user] setting columnview column sizes In-Reply-To: <201010042237.02818.rterry@...1946...> References: <201010041508.25336.rterry@...1946...> <4CA9A931.2010903@...221...> <201010042237.02818.rterry@...1946...> Message-ID: Hi Richard, Are you using gambas2 or gambas3? qt or gtk+? Did you tried the same project with only qt components? Which OS are you using? The gambas installation has been made from svn or from the os package? I asking about this because the code looks like ok. If you understand Spanish, I can send you a little project I'm using for myself where I use my own standard function to fill data in a GridView. Regads, Ricardo 2010/10/4 richard terry > On Monday 04 October 2010 21:15:13 Rolf-Werner Eilert wrote: > > Am 04.10.2010 06:08, schrieb richard terry: > > > Having wasted a couple of frustrating hours on this simple task, I > > > thought I'd ask the list. > > > > > > I have a 3 column column view. I want to set the sizes of this to a > user- > > > defined width (I've put in the code to save this ok), but for the > moment > > > to be concete lets say these are the values: > > > > > > If I put this up the top of my subroutine: > > > > > > cvwResults.Columns[0].width = 70 > > > cvwResults.Columns[1].width = 179 > > > cvwResults.Columns[2].width = 180 > > > > > > Then load the columnview with data: > > > > > > x = results_received!pk_document > > > cvwResults.Add(x, 0) > > > cvwResults[x][0] = Format(results_received!date_created, > > > "dd/mm/yyyy") > > > cvwResults[x][1] = result_received 'results_received!tag_user > > > cvwResults[x][2] = results_received!originator > > > > > > Then the column widths as re-set and the columnview expands the columns > > > to whatever it wants, as dictated by the widest bit of data . > > > > > > Any help appreciated as I'm about to slit my wrists over this one!!!!! > I > > > would have thought it was simple. I looked at all the columnview > > > properties to no avail. > > > > > > Regards > > > > > > ricahrd > > > > Just a guess: Try setting the column width AFTER filling them. Does that > > Not at all, one can try alot of combinations and permutations when > struggling > for an hour. > > Regards > > Richard > > > help? > > > > Regards > > > > Rolf > > > > > > > --------------------------------------------------------------------------- > > --- Virtualization is moving to the mainstream and overtaking > > non-virtualized environment for deploying applications. Does it make > > network security easier or more difficult to achieve? Read this > whitepaper > > to separate the two and get a better understanding. > > http://p.sf.net/sfu/hp-phase2-d2d > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > ------------------------------------------------------------------------------ > Virtualization is moving to the mainstream and overtaking non-virtualized > environment for deploying applications. Does it make network security > easier or more difficult to achieve? Read this whitepaper to separate the > two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From office.zolano at ...626... Mon Oct 4 15:45:06 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Mon, 04 Oct 2010 16:45:06 +0300 Subject: [Gambas-user] [Fwd: Textbox-valuebox objects] Message-ID: <1286199906.2374.0.camel@...2492...> Solved: PUBLIC SUB factura_KeyRelease() IF Key.Code = Key.Enter OR Key.Code = Key.Return THEN datum.SetFocus ENDIF END -------------- next part -------------- An embedded message was scrubbed... From: Biro Zoltan Subject: Textbox-valuebox objects Date: Mon, 04 Oct 2010 16:31:34 +0300 Size: 714 URL: From oceanosoftlapalma at ...626... Mon Oct 4 16:06:35 2010 From: oceanosoftlapalma at ...626... (=?ISO-8859-1?Q?Ricardo_D=EDaz_Mart=EDn?=) Date: Mon, 4 Oct 2010 16:06:35 +0200 Subject: [Gambas-user] setting columnview column sizes In-Reply-To: References: <201010041508.25336.rterry@...1946...> <4CA9A931.2010903@...221...> <201010042237.02818.rterry@...1946...> Message-ID: I'm sorry Richard. I'm talking about grid view. I never have used column view control. I hate the users are to be able to modify data into grid. I usually force to the user to do double-click and open a fast form to edit the row. When the form with the row is closed the table is update. Regards, Ricardo 2010/10/4 Ricardo D?az Mart?n > Hi Richard, > > Are you using gambas2 or gambas3? qt or gtk+? Did you tried the same > project with only qt components? Which OS are you using? The gambas > installation has been made from svn or from the os package? > > I asking about this because the code looks like ok. > > If you understand Spanish, I can send you a little project I'm using for > myself where I use my own standard function to fill data in a GridView. > > Regads, > Ricardo > > > 2010/10/4 richard terry > > On Monday 04 October 2010 21:15:13 Rolf-Werner Eilert wrote: >> > Am 04.10.2010 06:08, schrieb richard terry: >> > > Having wasted a couple of frustrating hours on this simple task, I >> > > thought I'd ask the list. >> > > >> > > I have a 3 column column view. I want to set the sizes of this to a >> user- >> > > defined width (I've put in the code to save this ok), but for the >> moment >> > > to be concete lets say these are the values: >> > > >> > > If I put this up the top of my subroutine: >> > > >> > > cvwResults.Columns[0].width = 70 >> > > cvwResults.Columns[1].width = 179 >> > > cvwResults.Columns[2].width = 180 >> > > >> > > Then load the columnview with data: >> > > >> > > x = results_received!pk_document >> > > cvwResults.Add(x, 0) >> > > cvwResults[x][0] = Format(results_received!date_created, >> > > "dd/mm/yyyy") >> > > cvwResults[x][1] = result_received >> 'results_received!tag_user >> > > cvwResults[x][2] = results_received!originator >> > > >> > > Then the column widths as re-set and the columnview expands the >> columns >> > > to whatever it wants, as dictated by the widest bit of data . >> > > >> > > Any help appreciated as I'm about to slit my wrists over this one!!!!! >> I >> > > would have thought it was simple. I looked at all the columnview >> > > properties to no avail. >> > > >> > > Regards >> > > >> > > ricahrd >> > >> > Just a guess: Try setting the column width AFTER filling them. Does that >> >> Not at all, one can try alot of combinations and permutations when >> struggling >> for an hour. >> >> Regards >> >> Richard >> >> > help? >> > >> > Regards >> > >> > Rolf >> > >> > >> > >> --------------------------------------------------------------------------- >> > --- Virtualization is moving to the mainstream and overtaking >> > non-virtualized environment for deploying applications. Does it make >> > network security easier or more difficult to achieve? Read this >> whitepaper >> > to separate the two and get a better understanding. >> > http://p.sf.net/sfu/hp-phase2-d2d >> > _______________________________________________ >> > Gambas-user mailing list >> > Gambas-user at lists.sourceforge.net >> > https://lists.sourceforge.net/lists/listinfo/gambas-user >> > >> >> >> ------------------------------------------------------------------------------ >> Virtualization is moving to the mainstream and overtaking non-virtualized >> environment for deploying applications. Does it make network security >> easier or more difficult to achieve? Read this whitepaper to separate the >> two and get a better understanding. >> http://p.sf.net/sfu/hp-phase2-d2d >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > From jussi.lahtinen at ...626... Mon Oct 4 16:33:17 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Mon, 4 Oct 2010 17:33:17 +0300 Subject: [Gambas-user] Textbox - Valuebox In-Reply-To: <1286196900.2153.3.camel@...2492...> References: <4CA99B3F.3000308@...27...> <1286196900.2153.3.camel@...2492...> Message-ID: NewTextBox.SetFocus() ? Jussi On Mon, Oct 4, 2010 at 15:55, Biro Zoltan wrote: > Thank you very much Johny! > > BUT! > > I can evaluate the key pressed with keypress event, but I cannot make > the cursor to leave this textbox and to move to the next textbox. > > My example: > > PUBLIC SUB factura_KeyPress() > IF Key.Code = Key.Enter OR Key.Code = Key.Return THEN > > ' here is neccesary a command for the cursor to leave the current > object and to move to next object. > > ENDIF > END > > > Is a function or command to make this? Is a system variable where I can > increase the number of the current object? > > > Regards, > Zoly B. > > > 2010. 10. 4, h?tf? keltez?ssel 11.15-kor Johny Provoost ezt ?rta: > > Op 04-10-10 11:02, Zoltan Biro schreef: > > > Hello everybody.. > > > > > > Can somebody told me how I can make the cursor to leave textbox > > > with a simple key? > > > By defaul I can leave these controls only with the tab or directional > > > keys..this is very unconfortable. > > > Thank you for your answer in advance. > > > > > > Best regards, > > > Zoli B. > > > > > > > ------------------------------------------------------------------------------ > > > Virtualization is moving to the mainstream and overtaking > non-virtualized > > > environment for deploying applications. Does it make network security > > > easier or more difficult to achieve? Read this whitepaper to separate > the > > > two and get a better understanding. > > > http://p.sf.net/sfu/hp-phase2-d2d > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > > > look in the sub txtfield_KeyPress > > if the key.code is Enter or Return then you can do someting. In my > > example a button is automatically pressed. > > > > PUBLIC SUB txtZoek_KeyPress() > > IF Key.Code = Key.Enter OR Key.Code = Key.Return THEN > > ZoekAdres.btZoek.Value = 1 > > ENDIF > > END > > > > Greetings, > > Johny > > > > > ------------------------------------------------------------------------------ > > Virtualization is moving to the mainstream and overtaking non-virtualized > > environment for deploying applications. Does it make network security > > easier or more difficult to achieve? Read this whitepaper to separate the > > two and get a better understanding. > > http://p.sf.net/sfu/hp-phase2-d2d > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > ------------------------------------------------------------------------------ > Virtualization is moving to the mainstream and overtaking non-virtualized > environment for deploying applications. Does it make network security > easier or more difficult to achieve? Read this whitepaper to separate the > two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From eilert-sprachen at ...221... Mon Oct 4 17:09:21 2010 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Mon, 04 Oct 2010 17:09:21 +0200 Subject: [Gambas-user] setting columnview column sizes In-Reply-To: References: <201010041508.25336.rterry@...1946...> <4CA9A931.2010903@...221...> <201010042237.02818.rterry@...1946...> Message-ID: <4CA9EE21.50401@...221...> Benoit should be able to tell you where to look at - at least he knows best the underlying code for the Grid and Tableview. But he needs to know the facts about your system, too. I have been using both options, user-input and separate dialog. It depends on usability: - There is an account app here where I took the dialog way because it is clearer to see that you fill in a certain payment (a table row) and book it (OK button). - There is another thing that enables me to write marks for the students for a test - here it is much more logical to make every cell writable as you jump from cell to cell. - The same applies for the classbook application where teachers have to write what was going on in the class: I tried it with a dialog, but they wanted a dynamic table with single cells because they were used to such things from Windows and they liked to click the cells like they had been writing into the paper classbooks :-) Regards Rolf 04.10.2010 16:06, schrieb Ricardo D?az Mart?n: > I'm sorry Richard. I'm talking about grid view. I never have used column > view control. I hate the users are to be able to modify data into grid. I > usually force to the user to do double-click and open a fast form to edit > the row. When the form with the row is closed the table is update. > > Regards, > Ricardo > > 2010/10/4 Ricardo D?az Mart?n > >> Hi Richard, >> >> Are you using gambas2 or gambas3? qt or gtk+? Did you tried the same >> project with only qt components? Which OS are you using? The gambas >> installation has been made from svn or from the os package? >> >> I asking about this because the code looks like ok. >> >> If you understand Spanish, I can send you a little project I'm using for >> myself where I use my own standard function to fill data in a GridView. >> >> Regads, >> Ricardo >> >> >> 2010/10/4 richard terry >> >> On Monday 04 October 2010 21:15:13 Rolf-Werner Eilert wrote: >>>> Am 04.10.2010 06:08, schrieb richard terry: >>>>> Having wasted a couple of frustrating hours on this simple task, I >>>>> thought I'd ask the list. >>>>> >>>>> I have a 3 column column view. I want to set the sizes of this to a >>> user- >>>>> defined width (I've put in the code to save this ok), but for the >>> moment >>>>> to be concete lets say these are the values: >>>>> >>>>> If I put this up the top of my subroutine: >>>>> >>>>> cvwResults.Columns[0].width = 70 >>>>> cvwResults.Columns[1].width = 179 >>>>> cvwResults.Columns[2].width = 180 >>>>> >>>>> Then load the columnview with data: >>>>> >>>>> x = results_received!pk_document >>>>> cvwResults.Add(x, 0) >>>>> cvwResults[x][0] = Format(results_received!date_created, >>>>> "dd/mm/yyyy") >>>>> cvwResults[x][1] = result_received >>> 'results_received!tag_user >>>>> cvwResults[x][2] = results_received!originator >>>>> >>>>> Then the column widths as re-set and the columnview expands the >>> columns >>>>> to whatever it wants, as dictated by the widest bit of data . >>>>> >>>>> Any help appreciated as I'm about to slit my wrists over this one!!!!! >>> I >>>>> would have thought it was simple. I looked at all the columnview >>>>> properties to no avail. >>>>> >>>>> Regards >>>>> >>>>> ricahrd >>>> >>>> Just a guess: Try setting the column width AFTER filling them. Does that >>> >>> Not at all, one can try alot of combinations and permutations when >>> struggling >>> for an hour. >>> >>> Regards >>> >>> Richard >>> >>>> help? >>>> >>>> Regards >>>> >>>> Rolf >>>> >>>> >>>> >>> --------------------------------------------------------------------------- >>>> --- Virtualization is moving to the mainstream and overtaking >>>> non-virtualized environment for deploying applications. Does it make >>>> network security easier or more difficult to achieve? Read this >>> whitepaper >>>> to separate the two and get a better understanding. >>>> http://p.sf.net/sfu/hp-phase2-d2d >>>> _______________________________________________ >>>> Gambas-user mailing list >>>> Gambas-user at lists.sourceforge.net >>>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Virtualization is moving to the mainstream and overtaking non-virtualized >>> environment for deploying applications. Does it make network security >>> easier or more difficult to achieve? Read this whitepaper to separate the >>> two and get a better understanding. >>> http://p.sf.net/sfu/hp-phase2-d2d >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >> > ------------------------------------------------------------------------------ > Virtualization is moving to the mainstream and overtaking non-virtualized > environment for deploying applications. Does it make network security > easier or more difficult to achieve? Read this whitepaper to separate the > two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From lord.quo at ...626... Mon Oct 4 17:21:09 2010 From: lord.quo at ...626... (Lord Quo) Date: Mon, 4 Oct 2010 10:21:09 -0500 Subject: [Gambas-user] Gambas3 :: Method signature and documentation In-Reply-To: <201010031727.36337.gambas@...1...> References: <003901cb5e8b$d0616520$71242f60$@gmail.com> <201009280654.48819.gambas@...1...> <005401cb5f1d$106d7410$31485c30$@gmail.com> <201010031727.36337.gambas@...1...> Message-ID: <004801cb63d7$c8249430$586dbc90$@gmail.com> Mmmm, I don't know :-/ I'm followed the instructions posted in http://gambasdoc.org/help/dev/gambas "How To Program Components In Gambas", but there are things that are obsolete in gambas3, like "You can install the component in your home directory by checking the corresponding option in the 'Make executable' dialog.". This option doesn't appears. As you said, I make an executable and I use it as library. And yes, I exported my classes. How can I make sure that I really make a true component? Thanks :-) -----Mensaje original----- De: Beno?t Minisini [mailto:gambas at ...1...] Enviado el: Domingo, 03 de Octubre de 2010 10:28 a.m. Para: mailing list for gambas users Asunto: Re: [Gambas-user] Gambas3 :: Method signature and documentation > :-) You put me in troubles because of my little english > > I have a class with a method, this method has 8 arguments. Whe I use > that method, the mini window that appears says me wath argument I am coding. > This mini window was corrected in revision 3241 "* BUG: Method > signature can be displayed on several lines if needed.". I put this > only for reference. > > When I use my method on a test form, the mini window with method > signature appears correctly, no problem, but... > > I compiled my component and make an executable and then I create a > new project and I use my compiled class and the project runs > correctly, but the mini window doesn't appears when I use any method > on any class of my component. > Do you make a true "component" or just an executable that you use as a library? And ensure that the classes you want to see in the signature are exported. Otherwise you won't see them! Regards, -- Beno?t Minisini ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From fabianfloresvadell at ...626... Mon Oct 4 18:44:56 2010 From: fabianfloresvadell at ...626... (=?ISO-8859-1?Q?Fabi=E1n_Flores_Vadell?=) Date: Mon, 4 Oct 2010 13:44:56 -0300 Subject: [Gambas-user] Textbox - Valuebox In-Reply-To: <1286196900.2153.3.camel@...2492...> References: <4CA99B3F.3000308@...27...> <1286196900.2153.3.camel@...2492...> Message-ID: 2010/10/4 Biro Zoltan : > Thank you very much Johny! > > BUT! > > I can evaluate the key pressed with keypress event, but I cannot make > the cursor to leave this textbox and to move to the next textbox. > > My example: > > PUBLIC SUB factura_KeyPress() > ?IF Key.Code = Key.Enter OR Key.Code = Key.Return THEN > > ? ' here is neccesary a command for the cursor to leave the current > object and to move to next object. > > ?ENDIF > END > > > Is a function or command to make this? Is a system variable where I can > increase the number of the current object? Yes, you can use: 'Sets the focus to the next control into the same container that the "LAST" LAST.Next.SetFocus() or Desktop.SendKeys("\t") The first is my preferred way to do that, because the second implies that you have to add the Desktop component at your project. Regards. -- Fabi?n Flores Vadell www.speedbooksargentina.blogspot.com From fabianfloresvadell at ...626... Mon Oct 4 18:50:57 2010 From: fabianfloresvadell at ...626... (=?ISO-8859-1?Q?Fabi=E1n_Flores_Vadell?=) Date: Mon, 4 Oct 2010 13:50:57 -0300 Subject: [Gambas-user] Problem in online help Message-ID: Some help items in the Wiki Encyclopaedia, repeats the sample code of each line. Example: http://gambasdoc.org/help/comp/gb.qt/control/.keypress?show -- Fabi?n Flores Vadell www.speedbooksargentina.blogspot.com From demosthenesk at ...626... Mon Oct 4 19:16:44 2010 From: demosthenesk at ...626... (user) Date: Mon, 04 Oct 2010 20:16:44 +0300 Subject: [Gambas-user] Background color of Menu of Form does not change Message-ID: <1286212604.18551.5.camel@...2493...> Hi i have just found that if i change the "Background" color of FMain the Menu color does not change when the app is running. It changes only in IDE. Although if i change the "Foreground" color of FMain the Menu color does change. i use Gambas 2.21 in Ubuntu 10.04. Thanks. From gambas at ...1... Mon Oct 4 20:44:20 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 4 Oct 2010 20:44:20 +0200 Subject: [Gambas-user] Problem in online help In-Reply-To: References: Message-ID: <201010042044.20523.gambas@...1...> > Some help items in the Wiki Encyclopaedia, repeats the sample code of > each line. > > Example: > > http://gambasdoc.org/help/comp/gb.qt/control/.keypress?show Oops. Fixed... -- Beno?t Minisini From gambas at ...1... Mon Oct 4 20:45:36 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 4 Oct 2010 20:45:36 +0200 Subject: [Gambas-user] Background color of Menu of Form does not change In-Reply-To: <1286212604.18551.5.camel@...2493...> References: <1286212604.18551.5.camel@...2493...> Message-ID: <201010042045.36329.gambas@...1...> > Hi > > i have just found that if i change the "Background" color of FMain the > Menu color does not change when the app is running. > It changes only in IDE. > > Although if i change the "Foreground" color of FMain the Menu color does > change. > > i use Gambas 2.21 in Ubuntu 10.04. > > Thanks. > AFAIK, this is a limitation in gb.gtk. Dunno why... -- Beno?t Minisini From demosthenesk at ...626... Mon Oct 4 21:36:41 2010 From: demosthenesk at ...626... (user) Date: Mon, 04 Oct 2010 22:36:41 +0300 Subject: [Gambas-user] Background color of Menu of Form does not change In-Reply-To: <201010042045.36329.gambas@...1...> References: <1286212604.18551.5.camel@...2493...> <201010042045.36329.gambas@...1...> Message-ID: <1286221001.25002.0.camel@...2493...> On Mon, 2010-10-04 at 20:45 +0200, Beno?t Minisini wrote: > > Hi > > > > i have just found that if i change the "Background" color of FMain the > > Menu color does not change when the app is running. > > It changes only in IDE. > > > > Although if i change the "Foreground" color of FMain the Menu color does > > change. > > > > i use Gambas 2.21 in Ubuntu 10.04. > > > > Thanks. > > > > AFAIK, this is a limitation in gb.gtk. Dunno why... > I change to gb.qt and now the main menu is the desired color but submenus are in system color ! From mohareve at ...626... Mon Oct 4 21:39:39 2010 From: mohareve at ...626... (M. Cs.) Date: Mon, 4 Oct 2010 21:39:39 +0200 Subject: [Gambas-user] gambas2-gb-sdl-sound in version 2.21 full with bugs Message-ID: I know that everybody is fixed upon gambas3, but I'm desperately trying to say, that there are so many bugs in it. For example, it freezes the entire application upon MP3 playback if the bitrate is higher than 128 kbps which is the only accepted rate, since if the bitrate is lower, or the frequency is not 44.1 KHz the playback is funny and distorted. Is somebody maintaining this part of the project? Or if something is even more its "back-backend", is that part a dead project? Another bug: If you pause a song (MP3) and try to move the position of the song the application crashes with signal #11. I'd really appreciate if somebody would take this seriously. Thanks! From demosthenesk at ...626... Mon Oct 4 21:41:20 2010 From: demosthenesk at ...626... (user) Date: Mon, 04 Oct 2010 22:41:20 +0300 Subject: [Gambas-user] Cant open project after crash Message-ID: <1286221280.25002.5.camel@...2493...> I created a project with gb.gui. I changed the components from gb.gui to gb.qt and tried to compile the project. The result was to create a name.gambas file 2 Gb and to crash the IDE. When i tried to reopen the project, in order to change the components i get an error message like the attached image. -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot.png Type: image/png Size: 26632 bytes Desc: not available URL: From gambas at ...1... Mon Oct 4 21:46:50 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 4 Oct 2010 21:46:50 +0200 Subject: [Gambas-user] Cant open project after crash In-Reply-To: <1286221280.25002.5.camel@...2493...> References: <1286221280.25002.5.camel@...2493...> Message-ID: <201010042146.50954.gambas@...1...> > I created a project with gb.gui. > > I changed the components from gb.gui to gb.qt and tried to compile the > project. > > The result was to create a name.gambas file 2 Gb and to crash the IDE. > > When i tried to reopen the project, in order to change the components i > get an error message like the attached image. Can I have your project (without the 2Gb file of course!) ? -- Beno?t Minisini From gambas at ...1... Mon Oct 4 21:51:05 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 4 Oct 2010 21:51:05 +0200 Subject: [Gambas-user] gambas2-gb-sdl-sound in version 2.21 full with bugs In-Reply-To: References: Message-ID: <201010042151.05053.gambas@...1...> > I know that everybody is fixed upon gambas3, but I'm desperately trying to > say, that there are so many bugs in it. For example, it freezes the entire > application upon MP3 playback if the bitrate is higher than 128 kbps which > is the only accepted rate, since if the bitrate is lower, or the frequency > is not 44.1 KHz the playback is funny and distorted. Is somebody > maintaining this part of the project? Or if something is even more its > "back-backend", is that part a dead project? > Another bug: If you pause a song (MP3) and try to move the position of the > song the application crashes with signal #11. > I'd really appreciate if somebody would take this seriously. > > Thanks! I wrote the gb.sdl.sound component in Gambas 1.0, and I didn't work on it since. But it used to work before. I don't think that sdl plays the MP3 on its own, but uses another library. So the problem may be inside sdl. Otherwise, the crash when moving a paused song better looks like a bug in my code. If you have a gambas project that I can use to reproduce all the problems, it will help me to fix the bugs, or at least to see where they come from. Regards, -- Beno?t Minisini From lordheavym at ...626... Mon Oct 4 21:54:52 2010 From: lordheavym at ...626... (Laurent Carlier) Date: Mon, 4 Oct 2010 21:54:52 +0200 Subject: [Gambas-user] gambas2-gb-sdl-sound in version 2.21 full with bugs In-Reply-To: References: Message-ID: <201010042154.52950.lordheavym@...626...> Le lundi 04 octobre 2010 21:39:39, M. Cs. a ?crit : > I know that everybody is fixed upon gambas3, but I'm desperately trying to > say, that there are so many bugs in it. For example, it freezes the entire > application upon MP3 playback if the bitrate is higher than 128 kbps which > is the only accepted rate, since if the bitrate is lower, or the frequency > is not 44.1 KHz the playback is funny and distorted. Is somebody > maintaining this part of the project? Or if something is even more its > "back-backend", is that part a dead project? If there is problems with mp3 with a bitrate higher than 128 kps, i guess the problem come from SDLmixer (or the associated library that manage mp3 decoding), or alsa/ausio driver. The gambas2 layer only send file to play to the SDLmixer library. > Another bug: If you pause a song (MP3) and try to move the position of the > song the application crashes with signal #11. I can repoduce the bug so we can take a look at it \o/ > I'd really appreciate if somebody would take this seriously. > > Thanks! We greatly appreciate your bug report, thanks ! Regards, Laurent Carlier From demosthenesk at ...626... Mon Oct 4 22:31:06 2010 From: demosthenesk at ...626... (user) Date: Mon, 04 Oct 2010 23:31:06 +0300 Subject: [Gambas-user] Cant open project after crash In-Reply-To: <1286221280.25002.5.camel@...2493...> References: <1286221280.25002.5.camel@...2493...> Message-ID: <1286224266.2676.19.camel@...2493...> On Mon, 2010-10-04 at 22:41 +0300, user wrote: > I created a project with gb.gui. > > I changed the components from gb.gui to gb.qt and tried to compile the > project. > > The result was to create a name.gambas file 2 Gb and to crash the IDE. > > When i tried to reopen the project, in order to change the components i > get an error message like the attached image. > > ok i found it. For some reason Gambas made a 2 Gb executable and cleared the .project file. I restore the info in .project file by hand from another project and all are ok now. But... for some reason when i try to make executable i get a huge file 2 Gb and the IDE crashes. i use AMD 64 and ubuntu 10.04 and Gambas 2.21. with other projects i dont have any problems. i suspect may be the string of path or something... i dont know... i attach the project but i removed some picture files... it still is opened. -------------- next part -------------- A non-text attachment was scrubbed... Name: Gambas-AVG-GUI-2.tar.gz Type: application/x-compressed-tar Size: 18832 bytes Desc: not available URL: From lordheavym at ...626... Mon Oct 4 23:34:08 2010 From: lordheavym at ...626... (Laurent Carlier) Date: Mon, 4 Oct 2010 23:34:08 +0200 Subject: [Gambas-user] gambas2-gb-sdl-sound in version 2.21 full with bugs In-Reply-To: References: Message-ID: <201010042334.08299.lordheavym@...626...> Le lundi 04 octobre 2010 21:39:39, M. Cs. a ?crit : > I know that everybody is fixed upon gambas3, but I'm desperately trying to > say, that there are so many bugs in it. For example, it freezes the entire > application upon MP3 playback if the bitrate is higher than 128 kbps which > is the only accepted rate, since if the bitrate is lower, or the frequency > is not 44.1 KHz the playback is funny and distorted. Is somebody > maintaining this part of the project? Or if something is even more its > "back-backend", is that part a dead project? > Another bug: If you pause a song (MP3) and try to move the position of the > song the application crashes with signal #11. > I'd really appreciate if somebody would take this seriously. > > Thanks! Try the rev 3250 if it fix the segfaulting issue. Regards, From gambas at ...1... Mon Oct 4 23:53:36 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 4 Oct 2010 23:53:36 +0200 Subject: [Gambas-user] gambas2-gb-sdl-sound in version 2.21 full with bugs In-Reply-To: <201010042334.08299.lordheavym@...626...> References: <201010042334.08299.lordheavym@...626...> Message-ID: <201010042353.36868.gambas@...1...> > Le lundi 04 octobre 2010 21:39:39, M. Cs. a ?crit : > > I know that everybody is fixed upon gambas3, but I'm desperately trying > > to say, that there are so many bugs in it. For example, it freezes the > > entire application upon MP3 playback if the bitrate is higher than 128 > > kbps which is the only accepted rate, since if the bitrate is lower, or > > the frequency is not 44.1 KHz the playback is funny and distorted. Is > > somebody maintaining this part of the project? Or if something is even > > more its "back-backend", is that part a dead project? > > Another bug: If you pause a song (MP3) and try to move the position of > > the song the application crashes with signal #11. > > I'd really appreciate if somebody would take this seriously. > > > > Thanks! > > Try the rev 3250 if it fix the segfaulting issue. > > Regards, > Hey Laurent! Welcome back! :-) -- Beno?t Minisini From gambas at ...1... Mon Oct 4 23:56:55 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 4 Oct 2010 23:56:55 +0200 Subject: [Gambas-user] Gambas3 :: Method signature and documentation In-Reply-To: <004801cb63d7$c8249430$586dbc90$@gmail.com> References: <003901cb5e8b$d0616520$71242f60$@gmail.com> <201010031727.36337.gambas@...1...> <004801cb63d7$c8249430$586dbc90$@gmail.com> Message-ID: <201010042356.55088.gambas@...1...> > Mmmm, I don't know :-/ > > I'm followed the instructions posted in > http://gambasdoc.org/help/dev/gambas "How To Program Components In > Gambas", but there are things that are obsolete in gambas3, like "You can > install the component in your home directory by checking the corresponding > option in the 'Make executable' dialog.". This option doesn't appears. > > As you said, I make an executable and I use it as library. > > And yes, I exported my classes. > > How can I make sure that I really make a true component? > Simple: if you check something in the "components" tab of the project property dialog, then this is a component. Otherwise, if you add a project in the list of the "libraries" tab, then it is a library. A library is just another gambas project used like a component. Technically, at runtime, there is no difference between a library and a component entirely written in Gambas. The IDE extracts the class and symbol information from the library *.gambas file, and so can display automatic completion and signature for all exported symbols of the library project. So send me your *.gambas library file and a little project that uses it, and then tell me what signature you expect to be displayed. Regards, -- Beno?t Minisini From lordheavym at ...626... Tue Oct 5 00:10:28 2010 From: lordheavym at ...626... (Laurent Carlier) Date: Tue, 5 Oct 2010 00:10:28 +0200 Subject: [Gambas-user] gambas2-gb-sdl-sound in version 2.21 full with bugs In-Reply-To: <201010042353.36868.gambas@...1...> References: <201010042334.08299.lordheavym@...626...> <201010042353.36868.gambas@...1...> Message-ID: <201010050010.29030.lordheavym@...626...> Le lundi 04 octobre 2010 23:53:36, Beno?t Minisini a ?crit : > > Le lundi 04 octobre 2010 21:39:39, M. Cs. a ?crit : > > > I know that everybody is fixed upon gambas3, but I'm desperately trying > > > to say, that there are so many bugs in it. For example, it freezes the > > > entire application upon MP3 playback if the bitrate is higher than 128 > > > kbps which is the only accepted rate, since if the bitrate is lower, or > > > the frequency is not 44.1 KHz the playback is funny and distorted. Is > > > somebody maintaining this part of the project? Or if something is even > > > more its "back-backend", is that part a dead project? > > > Another bug: If you pause a song (MP3) and try to move the position of > > > the song the application crashes with signal #11. > > > I'd really appreciate if somebody would take this seriously. > > > > > > Thanks! > > > > Try the rev 3250 if it fix the segfaulting issue. > > > > Regards, > > Hey Laurent! Welcome back! :-) Always here, .... always! ;-p From demosthenesk at ...626... Tue Oct 5 00:24:25 2010 From: demosthenesk at ...626... (user) Date: Tue, 05 Oct 2010 01:24:25 +0300 Subject: [Gambas-user] Cant open project after crash Message-ID: <1286231065.3385.1.camel@...2494...> i try second time to email this message i think admin rules abort it -------------- next part -------------- An embedded message was scrubbed... From: user Subject: Re: Cant open project after crash Date: Mon, 04 Oct 2010 23:31:06 +0300 Size: 27412 URL: From gambas at ...1... Tue Oct 5 00:31:26 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Tue, 5 Oct 2010 00:31:26 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: <201010032127.17905.gambas@...1...> Message-ID: <201010050031.26398.gambas@...1...> > OK, here it is. > > Jussi > > Well, your little example works as expected there (Mandriva 2010.1 / x86-64). On Gambas 3, it works if you add 'As "Process"' after the SHELL instruction and replace LINE INPUT by the READ instruction. Note that you should use EXEC instead of SHELL. Not important, but with SHELL, you add an intermediate "sh" process that is useless. Regards, -- Beno?t Minisini From gambas at ...1... Tue Oct 5 01:49:40 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Tue, 5 Oct 2010 01:49:40 +0200 Subject: [Gambas-user] Background color of Menu of Form does not change In-Reply-To: <1286221001.25002.0.camel@...2493...> References: <1286212604.18551.5.camel@...2493...> <201010042045.36329.gambas@...1...> <1286221001.25002.0.camel@...2493...> Message-ID: <201010050149.40753.gambas@...1...> > On Mon, 2010-10-04 at 20:45 +0200, Beno?t Minisini wrote: > > > Hi > > > > > > i have just found that if i change the "Background" color of FMain the > > > Menu color does not change when the app is running. > > > It changes only in IDE. > > > > > > Although if i change the "Foreground" color of FMain the Menu color > > > does change. > > > > > > i use Gambas 2.21 in Ubuntu 10.04. > > > > > > Thanks. > > > > AFAIK, this is a limitation in gb.gtk. Dunno why... > > I change to gb.qt and now the main menu is the desired color but > submenus are in system color ! > I can't modify the gb.qt(4) behaviour, but now on Gambas 3 (revision #3252), gb.gtk menus follow the window colors and font. Only the menu items keep their default foreground color at the moment. Regards, -- Beno?t Minisini From demosthenesk at ...626... Tue Oct 5 08:38:02 2010 From: demosthenesk at ...626... (user) Date: Tue, 05 Oct 2010 09:38:02 +0300 Subject: [Gambas-user] Property Form.Modal in Property Toolbox Message-ID: <1286260682.4280.1.camel@...2493...> I wander why the property Modal of a Form is not in Properties Toolbox? From gambas at ...1... Tue Oct 5 14:59:16 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Tue, 5 Oct 2010 14:59:16 +0200 Subject: [Gambas-user] Property Form.Modal in Property Toolbox In-Reply-To: <1286260682.4280.1.camel@...2493...> References: <1286260682.4280.1.camel@...2493...> Message-ID: <201010051459.16051.gambas@...1...> > I wander why the property Modal of a Form is not in Properties Toolbox? > Because it is read-only? -- Beno?t Minisini From eilert-sprachen at ...221... Tue Oct 5 16:28:02 2010 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Tue, 05 Oct 2010 16:28:02 +0200 Subject: [Gambas-user] Printer Setup Dialog - setting Printer.File or not (Gambas 2) Message-ID: <4CAB35F2.8050801@...221...> Now this is a problem I didn't see before... :-) When you call the standard printer setup dialog with Printer.File = "" and then click on Search, you get the application's path as starting directory for the search. Rather roundabout, isn't it? On the other hand, if you want to say "no printing into file", you will have to leave the dialog with Printer.File = "", there is no other way of indicating "I do not want to print into a file", is it? What I would like to have is a way to give a Printer.File when I call the dialog to enable the user to easier find a place to store the file, but not to "force" the user to actually print into a file, i. e. the option "direct print" should nevertheless be checked and the given path only be used IF the user decides to click on "print into a file". I hope you get what I mean... is there a way to do this, or does the automatic of this dialog just override this (as it seems to do for me)? Regards Rolf From lord.quo at ...626... Tue Oct 5 18:36:35 2010 From: lord.quo at ...626... (Lord Quo) Date: Tue, 5 Oct 2010 11:36:35 -0500 Subject: [Gambas-user] Gambas3 :: Method signature and documentation In-Reply-To: <201010042356.55088.gambas@...1...> References: <003901cb5e8b$d0616520$71242f60$@gmail.com> <201010031727.36337.gambas@...1...> <004801cb63d7$c8249430$586dbc90$@gmail.com> <201010042356.55088.gambas@...1...> Message-ID: <000301cb64ab$7bd4a5f0$737df1d0$@gmail.com> Ok, I found the error. I have about 30 class files in my project, and some of those files were missing the Export keyword. Well, another question, I compiled my component, created a new project and used the compiled component in the "Libraries" tab in the project properties and now all works perfectly, but, how can I do show this componente in the "Component" tab? It's possible? This is just a question, not a should be. Thanks for all Benoit. -----Mensaje original----- De: Beno?t Minisini [mailto:gambas at ...1...] Enviado el: Lunes, 04 de Octubre de 2010 04:57 p.m. Para: mailing list for gambas users Asunto: Re: [Gambas-user] Gambas3 :: Method signature and documentation > Mmmm, I don't know :-/ > > I'm followed the instructions posted in > http://gambasdoc.org/help/dev/gambas "How To Program Components In > Gambas", but there are things that are obsolete in gambas3, like "You > can install the component in your home directory by checking the > corresponding option in the 'Make executable' dialog.". This option doesn't appears. > > As you said, I make an executable and I use it as library. > > And yes, I exported my classes. > > How can I make sure that I really make a true component? > Simple: if you check something in the "components" tab of the project property dialog, then this is a component. Otherwise, if you add a project in the list of the "libraries" tab, then it is a library. A library is just another gambas project used like a component. Technically, at runtime, there is no difference between a library and a component entirely written in Gambas. The IDE extracts the class and symbol information from the library *.gambas file, and so can display automatic completion and signature for all exported symbols of the library project. So send me your *.gambas library file and a little project that uses it, and then tell me what signature you expect to be displayed. Regards, -- Beno?t Minisini ------------------------------------------------------------------------------ Virtualization is moving to the mainstream and overtaking non-virtualized environment for deploying applications. Does it make network security easier or more difficult to achieve? Read this whitepaper to separate the two and get a better understanding. http://p.sf.net/sfu/hp-phase2-d2d _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From mohareve at ...626... Tue Oct 5 18:53:33 2010 From: mohareve at ...626... (M. Cs.) Date: Tue, 5 Oct 2010 18:53:33 +0200 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010050031.26398.gambas@...1...> References: <201010032127.17905.gambas@...1...> <201010050031.26398.gambas@...1...> Message-ID: 1. Open your project 2. Add a new module, let's say "Sudo" 3. Paste these lines in: ' Gambas class file PUBLIC wins AS Form PUBLIC black AS Button PUBLIC szoveg1 AS TextBox PUBLIC hProcess AS Process PUBLIC SUB ReadPassword() DIM black AS Button DIM labi, labi2 AS Label wins = NEW Form wins.Width = 200 wins.Height = 140 wins.Title = "Update: 'locate'" labi = NEW Label(wins) labi.X = 20 labi.Y = 10 labi.Width = 160 labi.Height = 25 labi.Text = "Enter the root password:" szoveg1 = NEW TextBox(wins) szoveg1.Width = 160 szoveg1.Height = 25 szoveg1.X = 20 szoveg1.Y = 40 szoveg1.Password = TRUE labi2 = NEW Label(wins) labi2.X = 20 labi2.Y = 70 labi2.Width = 160 labi2.Height = 25 labi2.Text = "Shell: su -c 'updatedb'" black = NEW Button(wins) black.Width = 100 black.Height = 25 black.X = 50 black.Y = 105 black.Text = "Update" Object.Attach(black, ME, "runty") wins.Center wins.Show() hProcess = SHELL "su -c 'updatedb'" FOR INPUT OUTPUT END PUBLIC SUB runty_Click() PRINT #hProcess, szoveg1.Text wins.Delete() END ' PUBLIC SUB Process_read() DIM sOutput AS String LINE INPUT #LAST, sOutput PRINT sOutput END 4. Customize the commands you want to execute 5. Call the module with reference Sudo.ReadPassword() from the main program. From jussi.lahtinen at ...626... Tue Oct 5 19:34:32 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Tue, 5 Oct 2010 20:34:32 +0300 Subject: [Gambas-user] Gambas app run as root In-Reply-To: <201010050031.26398.gambas@...1...> References: <201010032127.17905.gambas@...1...> <201010050031.26398.gambas@...1...> Message-ID: I recompiled Gambas2 and it still doesn't work. So, I run this project with gdb and I find something very worrying. I edited that project so that line; *hProcess = SHELL "su -c 'ls /root'" FOR INPUT OUTPUT* is now: *hProcess = SHELL "sudo whoami" FOR INPUT OUTPUT* ~/Desktop/su$ gbc2 -agpmt ~/Desktop/su$ sudo -k ~/Desktop/su$ gdb gbx2 GNU gdb (GDB) 7.1-ubuntu Copyright (C) 2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu". For bug reporting instructions, please see: ... Reading symbols from /usr/local/bin/gbx2...done. (gdb) set args -p (gdb) run Starting program: /usr/local/bin/gbx2 -p [Thread debugging using libthread_db enabled] *root* FMain.Button1_Click.20: #42: System error. Bad file descriptor 0: FMain.Button1_Click.20 Mutex destroy failure: Device or resource busy Program exited with code 01. (gdb) So this is nice way to get root without password!!! Jussi 2010/10/5 Beno?t Minisini > > OK, here it is. > > > > Jussi > > > > > > Well, your little example works as expected there (Mandriva 2010.1 / > x86-64). > > On Gambas 3, it works if you add 'As "Process"' after the SHELL instruction > and replace LINE INPUT by the READ instruction. > > Note that you should use EXEC instead of SHELL. Not important, but with > SHELL, > you add an intermediate "sh" process that is useless. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Virtualization is moving to the mainstream and overtaking non-virtualized > environment for deploying applications. Does it make network security > easier or more difficult to achieve? Read this whitepaper to separate the > two and get a better understanding. > http://p.sf.net/sfu/hp-phase2-d2d > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Tue Oct 5 20:05:01 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Tue, 5 Oct 2010 20:05:01 +0200 Subject: [Gambas-user] Gambas3 :: Method signature and documentation In-Reply-To: <000301cb64ab$7bd4a5f0$737df1d0$@gmail.com> References: <003901cb5e8b$d0616520$71242f60$@gmail.com> <201010042356.55088.gambas@...1...> <000301cb64ab$7bd4a5f0$737df1d0$@gmail.com> Message-ID: <201010052005.01201.gambas@...1...> > Ok, I found the error. I have about 30 class files in my project, and some > of those files were missing the Export keyword. > > Well, another question, I compiled my component, created a new project and > used the compiled component in the "Libraries" tab in the project > properties and now all works perfectly, but, how can I do show this > componente in the "Component" tab? It's possible? > > This is just a question, not a should be. > > Thanks for all Benoit. > To be in the component tab, you must write an "official" component in the Gambas source tree. An "official" component aims at being used world-wide, and so it must be useful, its interface must be well-thought, it should not have too many bugs... It is finally part of the language. Regards, -- Beno?t Minisini From lord.quo at ...626... Tue Oct 5 20:07:34 2010 From: lord.quo at ...626... (Lord Quo) Date: Tue, 5 Oct 2010 13:07:34 -0500 Subject: [Gambas-user] Gambas3 :: Method signature and documentation In-Reply-To: <201010052005.01201.gambas@...1...> References: <003901cb5e8b$d0616520$71242f60$@gmail.com> <201010042356.55088.gambas@...1...> <000301cb64ab$7bd4a5f0$737df1d0$@gmail.com> <201010052005.01201.gambas@...1...> Message-ID: <000501cb64b8$30a682d0$91f38870$@gmail.com> Ok, thanks :-) -----Mensaje original----- De: Beno?t Minisini [mailto:gambas at ...1...] Enviado el: Martes, 05 de Octubre de 2010 01:05 p.m. Para: mailing list for gambas users Asunto: Re: [Gambas-user] Gambas3 :: Method signature and documentation > Ok, I found the error. I have about 30 class files in my project, and > some of those files were missing the Export keyword. > > Well, another question, I compiled my component, created a new > project and used the compiled component in the "Libraries" tab in the > project properties and now all works perfectly, but, how can I do show > this componente in the "Component" tab? It's possible? > > This is just a question, not a should be. > > Thanks for all Benoit. > To be in the component tab, you must write an "official" component in the Gambas source tree. An "official" component aims at being used world-wide, and so it must be useful, its interface must be well-thought, it should not have too many bugs... It is finally part of the language. Regards, -- Beno?t Minisini ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From jussi.lahtinen at ...626... Tue Oct 5 20:59:12 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Tue, 5 Oct 2010 21:59:12 +0300 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: <201010032127.17905.gambas@...1...> <201010050031.26398.gambas@...1...> Message-ID: OK. 1. su doesn't work with Ubuntu because root account is disabled by default! 2. "sudo -k" doesn't seem to be able kill timestamp correctly. So, when I open new terminal and try to get root without password, it doesn't work. 3 This program actually works IF it is run under gdb or valgrind!!? Jussi On Tue, Oct 5, 2010 at 20:34, Jussi Lahtinen wrote: > I recompiled Gambas2 and it still doesn't work. > > So, I run this project with gdb and I find something very worrying. > I edited that project so that line; > > *hProcess = SHELL "su -c 'ls /root'" FOR INPUT OUTPUT* > is now: > *hProcess = SHELL "sudo whoami" FOR INPUT OUTPUT* > > ~/Desktop/su$ gbc2 -agpmt > ~/Desktop/su$ sudo -k > ~/Desktop/su$ gdb gbx2 > GNU gdb (GDB) 7.1-ubuntu > Copyright (C) 2010 Free Software Foundation, Inc. > License GPLv3+: GNU GPL version 3 or later < > http://gnu.org/licenses/gpl.html> > This is free software: you are free to change and redistribute it. > There is NO WARRANTY, to the extent permitted by law. Type "show copying" > and "show warranty" for details. > This GDB was configured as "x86_64-linux-gnu". > For bug reporting instructions, please see: > ... > Reading symbols from /usr/local/bin/gbx2...done. > (gdb) set args -p > (gdb) run > Starting program: /usr/local/bin/gbx2 -p > [Thread debugging using libthread_db enabled] > *root* > FMain.Button1_Click.20: #42: System error. Bad file descriptor > 0: FMain.Button1_Click.20 > Mutex destroy failure: Device or resource busy > > Program exited with code 01. > (gdb) > > > So this is nice way to get root without password!!! > > Jussi > > > > 2010/10/5 Beno?t Minisini > > > OK, here it is. >> > >> > Jussi >> > >> > >> >> Well, your little example works as expected there (Mandriva 2010.1 / >> x86-64). >> >> On Gambas 3, it works if you add 'As "Process"' after the SHELL >> instruction >> and replace LINE INPUT by the READ instruction. >> >> Note that you should use EXEC instead of SHELL. Not important, but with >> SHELL, >> you add an intermediate "sh" process that is useless. >> >> Regards, >> >> -- >> Beno?t Minisini >> >> >> ------------------------------------------------------------------------------ >> Virtualization is moving to the mainstream and overtaking non-virtualized >> environment for deploying applications. Does it make network security >> easier or more difficult to achieve? Read this whitepaper to separate the >> two and get a better understanding. >> http://p.sf.net/sfu/hp-phase2-d2d >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > From demosthenesk at ...626... Tue Oct 5 21:03:50 2010 From: demosthenesk at ...626... (user) Date: Tue, 05 Oct 2010 22:03:50 +0300 Subject: [Gambas-user] Property Form.Modal in Property Toolbox In-Reply-To: <201010051459.16051.gambas@...1...> References: <1286260682.4280.1.camel@...2493...> <201010051459.16051.gambas@...1...> Message-ID: <1286305430.23405.1.camel@...2493...> On Tue, 2010-10-05 at 14:59 +0200, Beno?t Minisini wrote: > > I wander why the property Modal of a Form is not in Properties Toolbox? > > > > Because it is read-only? > ok, sorry i saw it in docs... From joe1962 at ...626... Tue Oct 5 23:08:37 2010 From: joe1962 at ...626... (Jose J. Rodriguez) Date: Tue, 5 Oct 2010 17:08:37 -0400 Subject: [Gambas-user] Gambas app run as root In-Reply-To: References: Message-ID: On 10/1/10, IMP Technologies - Tajinder Singh wrote: > > I have created a small basic interface for Fedora to change Plymouth theme. > But as changing theme requires to run some commands as root, I would like to > ask for root password before starting the application. > Similarly whenever we run 'system-config-boot' or other software that > requires root privileges. > Here's how I did it in the Main class of a system utility that manages the kernel cpufreq settings: ' Gambas module file PUBLIC SUB Main() DIM Ret AS String IF System.User.Id <> 0 THEN EXEC ["which", "gksu"] TO Ret IF InStr(Ret, "gksu") THEN EXEC ["gksu", Application.Path &/ "vcpufreq.gambas"] ELSE EXEC ["which", "kdesu"] TO Ret IF InStr(Ret, "kdesu") THEN EXEC ["kdesu", Application.Path &/ "vcpufreq.gambas"] ELSE PRINT "No gksu or kdesu available (try vcpufreq in a root terminal)..." ENDIF ENDIF QUIT ELSE Global.root = TRUE ENDIF FMain.Show ' Show main form... END Regards, Joe1962 From demosthenesk at ...626... Wed Oct 6 12:33:14 2010 From: demosthenesk at ...626... (user) Date: Wed, 06 Oct 2010 13:33:14 +0300 Subject: [Gambas-user] Set Active Tabstrib Panel from Button Click Message-ID: <1286361194.17690.9.camel@...2493...> Hello all, 1) I search in docs a property of tabistrib that make active a tabistrib tab. All that i want to do is to Click a button btnOk and set the first tab of tabstrib active. like this tabMyTabs[0].active=true or tabMyTabs[0].setfocus did you understand what i want? 2) A note.... The docs could be better. For example well known issues like this could be written as example in TabStrip.Current with the thought that "ok, TabStrip.Current gives the current tab, how to make another tab current" These mini examples would be grateful for someone. Thanks! From gambas at ...1... Wed Oct 6 13:13:57 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Wed, 6 Oct 2010 13:13:57 +0200 Subject: [Gambas-user] =?utf-8?q?I_cant_compile_Gambas=3A_problem_with_?= =?utf-8?b?wr9PcGVuR0w/?= In-Reply-To: References: <201009252000.40376.gambas@...1...> Message-ID: <201010061313.57467.gambas@...1...> > fabien at ...2489...:~$ autoconf --version > autoconf (GNU Autoconf) 2.67 > Copyright (C) 2010 Free Software Foundation, Inc. > License GPLv3+/Autoconf: GNU GPL version 3 or later > , > This is free software: you are > free to change and redistribute it. There is NO WARRANTY, to the extent > permitted by law. > > Written by David J. MacKenzie and Akim Demaille. > fabien at ...2489...:~$ > I think I have found where the problem comes from: http://git.savannah.gnu.org/gitweb/?p=autoconf- archive.git;a=commit;h=acb306ce125b3e7d6df709940fc0d159ab35cf11 I will try to see if I can incorporate the fixed autoconf macro directly in the gambas configuration files. Maybe by changing its name... Regards, -- Beno?t Minisini From gambas at ...1... Wed Oct 6 13:30:16 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Wed, 6 Oct 2010 13:30:16 +0200 Subject: [Gambas-user] Ubuntu Maverick and Gambas 3 Message-ID: <201010061330.16107.gambas@...1...> I committed a workaround to the autoconf 2.67 bug. Can ubuntu maverick users try to compile the revision #3252 to see if things are better? -- Beno?t Minisini From demosthenesk at ...626... Wed Oct 6 13:45:18 2010 From: demosthenesk at ...626... (Demosthenes Koptsis) Date: Wed, 6 Oct 2010 14:45:18 +0300 Subject: [Gambas-user] Cant open project after crash In-Reply-To: References: <1286231065.3385.1.camel@...2494...> Message-ID: Benoit to test my project you may be want to install AVG Antivirus for Linux i use this deb package http://download.avgfree.com/filedir/inst/avg85flx-r855-a3656.i386.deb from here http://free.avg.com/ww-en/download.prd-alf my app as you see is an avg gui for linux i send you a newer version with more nice code -------------- next part -------------- A non-text attachment was scrubbed... Name: Gambas-AVG-GUI-6.tar.gz Type: application/x-gzip Size: 42523 bytes Desc: not available URL: From ron at ...1740... Wed Oct 6 15:19:13 2010 From: ron at ...1740... (Ron) Date: Wed, 06 Oct 2010 15:19:13 +0200 Subject: [Gambas-user] Set Active Tabstrib Panel from Button Click In-Reply-To: <1286361194.17690.9.camel@...2493...> References: <1286361194.17690.9.camel@...2493...> Message-ID: <4CAC7751.8000305@...1740...> tabMytabs.Index = 0 is what you use to select first tab, .Index = 1 second etc... tabMyTabs.Setfocus Regards, Ron_2nd. > Hello all, > > 1) I search in docs a property of tabistrib that make active a tabistrib > tab. > > All that i want to do is to Click a button btnOk and set the first tab > of tabstrib active. > > like this > > tabMyTabs[0].active=true or tabMyTabs[0].setfocus > > did you understand what i want? > > 2) A note.... The docs could be better. > For example well known issues like this could be written as example in > TabStrip.Current with the thought that "ok, TabStrip.Current gives the > current tab, how to make another tab current" > > These mini examples would be grateful for someone. > > Thanks! > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...402... Wed Oct 6 17:24:30 2010 From: girardhenri at ...402... (Girard Henri) Date: Wed, 06 Oct 2010 17:24:30 +0200 Subject: [Gambas-user] Ubuntu Maverick and Gambas 3 In-Reply-To: <201010061330.16107.gambas@...1...> References: <201010061330.16107.gambas@...1...> Message-ID: <1286378670.21070.0.camel@...651...> it works Le mercredi 06 octobre 2010 ? 13:30 +0200, Beno?t Minisini a ?crit : > I committed a workaround to the autoconf 2.67 bug. Can ubuntu maverick users > try to compile the revision #3252 to see if things are better? > From demosthenesk at ...626... Wed Oct 6 18:13:40 2010 From: demosthenesk at ...626... (user) Date: Wed, 06 Oct 2010 19:13:40 +0300 Subject: [Gambas-user] Enumerate an Array Control Message-ID: <1286381620.20856.140.camel@...2493...> Hi, i have this SUB ------------------- PUBLIC SUB MakePathList() DIM iInt AS Integer DIM sKey AS String ' FOR EACH sKey IN lvwScanDirs ' PRINT lvwScanDirs[sKey].Text ' NEXT lvwScanDirs.MoveFirst FOR iInt = 0 TO lvwScanDirs.Count - 1 PRINT lvwScanDirs[lvwScanDirs.Item.key].Text lvwScanDirs.MoveNext NEXT END ------------------- All i want to achieve is to enumerate a listviewcontrol. i managed it with the code above. Is there any easier way to do this with FOR EACH? For example like that. DIM sKey AS String FOR EACH sKey IN lvwScanDirs PRINT lvwScanDirs[sKey].Text NEXT this code is wrong and i dont know how to enumerate with FOR EACH a control. From lord.quo at ...626... Wed Oct 6 18:31:29 2010 From: lord.quo at ...626... (Lord Quo) Date: Wed, 6 Oct 2010 11:31:29 -0500 Subject: [Gambas-user] Enumerate an Array Control In-Reply-To: <1286381620.20856.140.camel@...2493...> References: <1286381620.20856.140.camel@...2493...> Message-ID: <000c01cb6573$ef24ec90$cd6ec5b0$@gmail.com> I think is something like: Dim $item As ListViewItem For Each $item in lvwScanDirs Print $item.Text Next -----Mensaje original----- De: user [mailto:demosthenesk at ...626...] Enviado el: Mi?rcoles, 06 de Octubre de 2010 11:14 a.m. Para: Gambas User List Asunto: [Gambas-user] Enumerate an Array Control Hi, i have this SUB ------------------- PUBLIC SUB MakePathList() DIM iInt AS Integer DIM sKey AS String ' FOR EACH sKey IN lvwScanDirs ' PRINT lvwScanDirs[sKey].Text ' NEXT lvwScanDirs.MoveFirst FOR iInt = 0 TO lvwScanDirs.Count - 1 PRINT lvwScanDirs[lvwScanDirs.Item.key].Text lvwScanDirs.MoveNext NEXT END ------------------- All i want to achieve is to enumerate a listviewcontrol. i managed it with the code above. Is there any easier way to do this with FOR EACH? For example like that. DIM sKey AS String FOR EACH sKey IN lvwScanDirs PRINT lvwScanDirs[sKey].Text NEXT this code is wrong and i dont know how to enumerate with FOR EACH a control. ---------------------------------------------------------------------------- -- Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From demosthenesk at ...626... Wed Oct 6 20:56:08 2010 From: demosthenesk at ...626... (Demosthenes Koptsis) Date: Wed, 6 Oct 2010 21:56:08 +0300 Subject: [Gambas-user] Enumerate an Array Control In-Reply-To: <000c01cb6573$ef24ec90$cd6ec5b0$@gmail.com> References: <1286381620.20856.140.camel@...2493...> <000c01cb6573$ef24ec90$cd6ec5b0$@gmail.com> Message-ID: This line is not accepted "no such intetifier" Dim $item As ListViewItem On Wed, Oct 6, 2010 at 7:31 PM, Lord Quo wrote: > I think is something like: > > Dim $item As ListViewItem > > For Each $item in lvwScanDirs > Print $item.Text > Next > > -----Mensaje original----- > De: user [mailto:demosthenesk at ...626...] > Enviado el: Mi?rcoles, 06 de Octubre de 2010 11:14 a.m. > Para: Gambas User List > Asunto: [Gambas-user] Enumerate an Array Control > > Hi, > > i have this SUB > > ------------------- > PUBLIC SUB MakePathList() > > DIM iInt AS Integer > DIM sKey AS String > > ' FOR EACH sKey IN lvwScanDirs > ' PRINT lvwScanDirs[sKey].Text > ' NEXT > > lvwScanDirs.MoveFirst > FOR iInt = 0 TO lvwScanDirs.Count - 1 > PRINT lvwScanDirs[lvwScanDirs.Item.key].Text > lvwScanDirs.MoveNext > NEXT > > END > ------------------- > > All i want to achieve is to enumerate a listviewcontrol. > > i managed it with the code above. > > Is there any easier way to do this with FOR EACH? For example like that. > > DIM sKey AS String > > FOR EACH sKey IN lvwScanDirs > PRINT lvwScanDirs[sKey].Text > NEXT > > this code is wrong and i dont know how to enumerate with FOR EACH a > control. > > > > ---------------------------------------------------------------------------- > -- > Beautiful is writing same markup. Internet Explorer 9 supports standards > for > HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- ???? ???? ?? ?????!!! Regards, Demosthenes Koptsis From dr.diesel at ...626... Wed Oct 6 23:53:48 2010 From: dr.diesel at ...626... (Dr.Diesel) Date: Wed, 6 Oct 2010 14:53:48 -0700 (PDT) Subject: [Gambas-user] Trouble with "make install" Message-ID: <29901192.post@...1379...> I have three other Gambas3 boxes without this issue, so maybe not a Gambas issue. My latest install in on a Fedora 14 RC box, I receive the following error installing with su -c "make install", this works fine on my other Fedora 14 boxes, save software levels, all 64bit etc. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/andy/trunk/examples' make[1]: Leaving directory `/home/andy/trunk/examples' Making install in . make[1]: Entering directory `/home/andy/trunk' make[2]: Entering directory `/home/andy/trunk' || || Unable to compile gambas3 || make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/andy/trunk' make[1]: Leaving directory `/home/andy/trunk' [andy at ...40... trunk]$ This is At revision 3255, but I was having the same issue yesterday. This install was done the same as all the others with ./reconf-all; ./configure; make; su -c "make install" I have attached the configure/make/make install log. Thanks for the help. Andy http://old.nabble.com/file/p29901192/output.txt.tar.gz output.txt.tar.gz -- View this message in context: http://old.nabble.com/Trouble-with-%22make-install%22-tp29901192p29901192.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Wed Oct 6 23:56:50 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Wed, 6 Oct 2010 23:56:50 +0200 Subject: [Gambas-user] Trouble with "make install" In-Reply-To: <29901192.post@...1379...> References: <29901192.post@...1379...> Message-ID: <201010062356.51192.gambas@...1...> > I have three other Gambas3 boxes without this issue, so maybe not a Gambas > issue. My latest install in on a Fedora 14 RC box, I receive the following > error installing with su -c "make install", this works fine on my other > Fedora 14 boxes, save software levels, all 64bit etc. > > make[2]: Nothing to be done for `install-data-am'. > make[2]: Leaving directory `/home/andy/trunk/examples' > make[1]: Leaving directory `/home/andy/trunk/examples' > Making install in . > make[1]: Entering directory `/home/andy/trunk' > make[2]: Entering directory `/home/andy/trunk' > > || Unable to compile gambas3 > > make[2]: Nothing to be done for `install-data-am'. > make[2]: Leaving directory `/home/andy/trunk' > make[1]: Leaving directory `/home/andy/trunk' > [andy at ...40... trunk]$ > > This is At revision 3255, but I was having the same issue yesterday. This > install was done the same as all the others with ./reconf-all; ./configure; > make; su -c "make install" > > I have attached the configure/make/make install log. > > Thanks for the help. > Andy > > http://old.nabble.com/file/p29901192/output.txt.tar.gz output.txt.tar.gz Read the output carefully: you will see that gb.qt4.webkit cannot be compiled, and that component is needed to compile the IDE. You just have to install the qt4 webkit development packages. Regards, -- Beno?t Minisini From dr.diesel at ...626... Thu Oct 7 00:08:44 2010 From: dr.diesel at ...626... (Dr.Diesel) Date: Wed, 6 Oct 2010 15:08:44 -0700 (PDT) Subject: [Gambas-user] Trouble with "make install" In-Reply-To: <201010062356.51192.gambas@...1...> References: <29901192.post@...1379...> <201010062356.51192.gambas@...1...> Message-ID: <29901299.post@...1379...> Thank you, not sure how I missed that with a mirror of a working machine! Please also add package: qt-webkit-devel To the Fedora 13+ package list here: http://gambasdoc.org/help/install/fedora?view Many thanks, Andy -- View this message in context: http://old.nabble.com/Trouble-with-%22make-install%22-tp29901192p29901299.html Sent from the gambas-user mailing list archive at Nabble.com. From office.zolano at ...626... Thu Oct 7 08:11:10 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Thu, 07 Oct 2010 09:11:10 +0300 Subject: [Gambas-user] Substitute of the object names Message-ID: <1286431870.2864.6.camel@...2492...> Hello, I will try to explain with my poor english exacly what I wish to do: 1.I have 20 pcs of valueboxes named: n1,n2,n3...n20 2.I have a variable named i defined as short 3.I wish to substitute the numbers from the valueboxes name like in folowing example: i=0 for i=0 to list.count 'here I wist to give values to the valueboxes: ni.value=list[i].text next Can I substitute the numbers with the value of i? How? Thank you. Zoli B. From eilert-sprachen at ...221... Thu Oct 7 08:23:37 2010 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Thu, 07 Oct 2010 08:23:37 +0200 Subject: [Gambas-user] Substitute of the object names In-Reply-To: <1286431870.2864.6.camel@...2492...> References: <1286431870.2864.6.camel@...2492...> Message-ID: <4CAD6769.5070402@...221...> Am 07.10.2010 08:11, schrieb Biro Zoltan: > Hello, > > I will try to explain with my poor english exacly what I wish to do: > > 1.I have 20 pcs of valueboxes named: n1,n2,n3...n20 > 2.I have a variable named i defined as short > 3.I wish to substitute the numbers from the valueboxes name like in > folowing example: > > i=0 > for i=0 to list.count > > 'here I wist to give values to the valueboxes: > > ni.value=list[i].text > > next > > Can I substitute the numbers with the value of i? How? > > Thank you. > > Zoli B. > > Wouldn't it be easier to just make an array of valueboxes? That would enable you to write ni[i].value = list[i].text and Gambas would have direct access to each of the valueboxes during runtime. Regards Rolf From office.zolano at ...626... Thu Oct 7 09:04:26 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Thu, 07 Oct 2010 10:04:26 +0300 Subject: [Gambas-user] Substitute of the object names In-Reply-To: <4CAD6769.5070402@...221...> References: <1286431870.2864.6.camel@...2492...> <4CAD6769.5070402@...221...> Message-ID: <1286435066.2864.15.camel@...2492...> Thank you Rolf to helping me. Please take a look on the folowing piece of code: (I never used array of texboxes, but I think is something like I did here) PUBLIC SUB filltheboxes() DIM x AS String[20] DIM y[20] AS TextBox DIM i AS Short x[0] = "1" x[1] = "2" x[2] = "3" x[3] = "4" x[4] = "5" x[5] = "6" x[6] = "7" x[7] = "8" x[8] = "9" x[9] = "10" x[10] = "11" x[11] = "12" x[12] = "13" x[13] = "14" x[14] = "15" x[15] = "16" x[16] = "17" x[17] = "18" x[18] = "19" x[19] = "20" i = 0 FOR i = 0 TO 19 y[i].text = x[i] NEXT END Why this code return a "Null object" error code?? I hope to can be solved in Gambas2 more simply the substitute problem. I used before FoxPro for Windows. Here is simple: i=1 for i=1 to 20 boxname="n"+str(i) &boxname.text=" enithyng " endfor Is something in Gambas2 similar for &boxname.text, like in Foxpro? For me the second variant seems to be more simply, but please explain me why I have "Null object" error on the gambas2 code 2010. 10. 7, cs?t?rt?k keltez?ssel 08.23-kor Rolf-Werner Eilert ezt ?rta: > Am 07.10.2010 08:11, schrieb Biro Zoltan: > > Hello, > > > > I will try to explain with my poor english exacly what I wish to do: > > > > 1.I have 20 pcs of valueboxes named: n1,n2,n3...n20 > > 2.I have a variable named i defined as short > > 3.I wish to substitute the numbers from the valueboxes name like in > > folowing example: > > > > i=0 > > for i=0 to list.count > > > > 'here I wist to give values to the valueboxes: > > > > ni.value=list[i].text > > > > next > > > > Can I substitute the numbers with the value of i? How? > > > > Thank you. > > > > Zoli B. > > > > > > Wouldn't it be easier to just make an array of valueboxes? That would > enable you to write > > ni[i].value = list[i].text > > and Gambas would have direct access to each of the valueboxes during > runtime. > > Regards > > Rolf > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From eilert-sprachen at ...221... Thu Oct 7 10:22:03 2010 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Thu, 07 Oct 2010 10:22:03 +0200 Subject: [Gambas-user] Substitute of the object names In-Reply-To: <1286435066.2864.15.camel@...2492...> References: <1286431870.2864.6.camel@...2492...> <4CAD6769.5070402@...221...> <1286435066.2864.15.camel@...2492...> Message-ID: <4CAD832B.90905@...221...> Ok, there is one thing you have to take care of, because Gambas works as C++ here and wants the arrays to be instantiated after declaration. So to make it easy, just add a NEW to the DIM line: DIM x AS NEW String[20] And now let me see how I did this in my programs... It's been a long time since I needed that: In the Form declaration part, I have PRIVATE mTxt AS NEW Object[] In the Form there is a TabStrip, and on this TabStrip the "fields" (TextBoxes) shall appear. The TabStrip for this "mask" is called "Maske". (fldNr is the field number) In the SUB which builds the mask, I wrote for example: INC fldNr mTxt.Resize(fldNr + 1) mTxt[fldNr] = NEW TextBox(Maske) AS "MaskeFeld" mTxt[fldNr].Tag = wert[8] 'fldNr mTxt[fldNr].ToolTip = wert[8] mTxt[fldNr].X = Val(wert[2]) mTxt[fldNr].Y = Val(wert[3]) A new TextBox-Object is created, and then some values are applied which come from another array ("wert"). But why did I need to declare AS "MaskeFeld"? Just to be able to catch events like PUBLIC SUB MaskeFeld_Change() MaskenSpeichern 'the contents of all the TextBoxes is saved if you type into one of them END Caution: In order to delete the TextBoxes, you have to delete them piece for piece from the array prior to deleting the array, such as FOR i = mTxt.Count - 1 TO 0 STEP -1 mTxt[i].Delete NEXT mTxt.Clear Hope this helps you... Regards Rolf Am 07.10.2010 09:04, schrieb Biro Zoltan: > Thank you Rolf to helping me. > Please take a look on the folowing piece of code: > (I never used array of texboxes, but I think is something like I did > here) > > PUBLIC SUB filltheboxes() > > DIM x AS String[20] > DIM y[20] AS TextBox > DIM i AS Short > > x[0] = "1" > x[1] = "2" > x[2] = "3" > x[3] = "4" > x[4] = "5" > x[5] = "6" > x[6] = "7" > x[7] = "8" > x[8] = "9" > x[9] = "10" > x[10] = "11" > x[11] = "12" > x[12] = "13" > x[13] = "14" > x[14] = "15" > x[15] = "16" > x[16] = "17" > x[17] = "18" > x[18] = "19" > x[19] = "20" > > i = 0 > FOR i = 0 TO 19 > y[i].text = x[i] > NEXT > > END > > Why this code return a "Null object" error code?? > > I hope to can be solved in Gambas2 more simply the substitute problem. I > used before FoxPro for Windows. Here is simple: > > i=1 > for i=1 to 20 > boxname="n"+str(i) > &boxname.text=" enithyng " > endfor > Is something in Gambas2 similar for&boxname.text, like in Foxpro? > > For me the second variant seems to be more simply, but please explain me > why I have "Null object" error on the gambas2 code > > > 2010. 10. 7, cs?t?rt?k keltez?ssel 08.23-kor Rolf-Werner Eilert ezt > ?rta: >> Am 07.10.2010 08:11, schrieb Biro Zoltan: >>> Hello, >>> >>> I will try to explain with my poor english exacly what I wish to do: >>> >>> 1.I have 20 pcs of valueboxes named: n1,n2,n3...n20 >>> 2.I have a variable named i defined as short >>> 3.I wish to substitute the numbers from the valueboxes name like in >>> folowing example: >>> >>> i=0 >>> for i=0 to list.count >>> >>> 'here I wist to give values to the valueboxes: >>> >>> ni.value=list[i].text >>> >>> next >>> >>> Can I substitute the numbers with the value of i? How? >>> >>> Thank you. >>> >>> Zoli B. >>> >>> >> >> Wouldn't it be easier to just make an array of valueboxes? That would >> enable you to write >> >> ni[i].value = list[i].text >> >> and Gambas would have direct access to each of the valueboxes during >> runtime. >> >> Regards >> >> Rolf >> >> ------------------------------------------------------------------------------ >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. >> Spend less time writing and rewriting code and more time creating great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From office.zolano at ...626... Thu Oct 7 10:57:10 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Thu, 07 Oct 2010 11:57:10 +0300 Subject: [Gambas-user] Substitute of the object names In-Reply-To: <4CAD832B.90905@...221...> References: <1286431870.2864.6.camel@...2492...> <4CAD6769.5070402@...221...> <1286435066.2864.15.camel@...2492...> <4CAD832B.90905@...221...> Message-ID: <1286441830.4238.9.camel@...2492...> SOLVED!!! DIM x AS String[3] DIM i AS Short DIM obj AS Object x[0] = "1" x[1] = "2" x[2] = "3" i = 0 FOR i = 0 TO 2 FOR EACH obj IN sidp.Children IF Lower(object.Type(obj))="textbox" AND obj.name="n"&Str$(i+1) obj.text = x[i] ENDIF NEXT NEXT END Here I scanned all objects in "sdip" container, I compared the names with "n"+str(i) and where is matched I changed the obj.text..in this way I filled the textboxes with values depends on i's value. Thank you Rolf again.. 2010. 10. 7, cs?t?rt?k keltez?ssel 10.22-kor Rolf-Werner Eilert ezt ?rta: > Ok, there is one thing you have to take care of, because Gambas works as > C++ here and wants the arrays to be instantiated after declaration. So > to make it easy, just add a NEW to the DIM line: > > DIM x AS NEW String[20] > > And now let me see how I did this in my programs... It's been a long > time since I needed that: > > In the Form declaration part, I have > > PRIVATE mTxt AS NEW Object[] > > In the Form there is a TabStrip, and on this TabStrip the "fields" > (TextBoxes) shall appear. The TabStrip for this "mask" is called > "Maske". (fldNr is the field number) In the SUB which builds the mask, I > wrote for example: > > INC fldNr > mTxt.Resize(fldNr + 1) > mTxt[fldNr] = NEW TextBox(Maske) AS "MaskeFeld" > mTxt[fldNr].Tag = wert[8] 'fldNr > mTxt[fldNr].ToolTip = wert[8] > mTxt[fldNr].X = Val(wert[2]) > mTxt[fldNr].Y = Val(wert[3]) > > A new TextBox-Object is created, and then some values are applied which > come from another array ("wert"). But why did I need to declare AS > "MaskeFeld"? Just to be able to catch events like > > PUBLIC SUB MaskeFeld_Change() > > MaskenSpeichern > > 'the contents of all the TextBoxes is saved if you type into one of them > > END > > Caution: In order to delete the TextBoxes, you have to delete them piece > for piece from the array prior to deleting the array, such as > > FOR i = mTxt.Count - 1 TO 0 STEP -1 > mTxt[i].Delete > NEXT > mTxt.Clear > > Hope this helps you... > > Regards > > Rolf > > > Am 07.10.2010 09:04, schrieb Biro Zoltan: > > Thank you Rolf to helping me. > > Please take a look on the folowing piece of code: > > (I never used array of texboxes, but I think is something like I did > > here) > > > > PUBLIC SUB filltheboxes() > > > > DIM x AS String[20] > > DIM y[20] AS TextBox > > DIM i AS Short > > > > x[0] = "1" > > x[1] = "2" > > x[2] = "3" > > x[3] = "4" > > x[4] = "5" > > x[5] = "6" > > x[6] = "7" > > x[7] = "8" > > x[8] = "9" > > x[9] = "10" > > x[10] = "11" > > x[11] = "12" > > x[12] = "13" > > x[13] = "14" > > x[14] = "15" > > x[15] = "16" > > x[16] = "17" > > x[17] = "18" > > x[18] = "19" > > x[19] = "20" > > > > i = 0 > > FOR i = 0 TO 19 > > y[i].text = x[i] > > NEXT > > > > END > > > > Why this code return a "Null object" error code?? > > > > I hope to can be solved in Gambas2 more simply the substitute problem. I > > used before FoxPro for Windows. Here is simple: > > > > i=1 > > for i=1 to 20 > > boxname="n"+str(i) > > &boxname.text=" enithyng " > > endfor > > Is something in Gambas2 similar for&boxname.text, like in Foxpro? > > > > For me the second variant seems to be more simply, but please explain me > > why I have "Null object" error on the gambas2 code > > > > > > 2010. 10. 7, cs?t?rt?k keltez?ssel 08.23-kor Rolf-Werner Eilert ezt > > ?rta: > >> Am 07.10.2010 08:11, schrieb Biro Zoltan: > >>> Hello, > >>> > >>> I will try to explain with my poor english exacly what I wish to do: > >>> > >>> 1.I have 20 pcs of valueboxes named: n1,n2,n3...n20 > >>> 2.I have a variable named i defined as short > >>> 3.I wish to substitute the numbers from the valueboxes name like in > >>> folowing example: > >>> > >>> i=0 > >>> for i=0 to list.count > >>> > >>> 'here I wist to give values to the valueboxes: > >>> > >>> ni.value=list[i].text > >>> > >>> next > >>> > >>> Can I substitute the numbers with the value of i? How? > >>> > >>> Thank you. > >>> > >>> Zoli B. > >>> > >>> > >> > >> Wouldn't it be easier to just make an array of valueboxes? That would > >> enable you to write > >> > >> ni[i].value = list[i].text > >> > >> and Gambas would have direct access to each of the valueboxes during > >> runtime. > >> > >> Regards > >> > >> Rolf > >> > >> ------------------------------------------------------------------------------ > >> Beautiful is writing same markup. Internet Explorer 9 supports > >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > >> Spend less time writing and rewriting code and more time creating great > >> experiences on the web. Be a part of the beta today. > >> http://p.sf.net/sfu/beautyoftheweb > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > ------------------------------------------------------------------------------ > > Beautiful is writing same markup. Internet Explorer 9 supports > > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > > Spend less time writing and rewriting code and more time creating great > > experiences on the web. Be a part of the beta today. > > http://p.sf.net/sfu/beautyoftheweb > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From office.zolano at ...626... Thu Oct 7 11:07:12 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Thu, 07 Oct 2010 12:07:12 +0300 Subject: [Gambas-user] Substitute of the object names In-Reply-To: <4CAD832B.90905@...221...> References: <1286431870.2864.6.camel@...2492...> <4CAD6769.5070402@...221...> <1286435066.2864.15.camel@...2492...> <4CAD832B.90905@...221...> Message-ID: <1286442432.4238.11.camel@...2492...> Another simple solution: DIM x AS String[3] DIM i AS Short DIM obj AS Object[] = [n1, n2, n3] x[0] = "1" x[1] = "2" x[2] = "3" i = 0 FOR i = 0 TO 2 obj[i].text = x[i] NEXT Best regards, Zoli B. 2010. 10. 7, cs?t?rt?k keltez?ssel 10.22-kor Rolf-Werner Eilert ezt ?rta: > Ok, there is one thing you have to take care of, because Gambas works as > C++ here and wants the arrays to be instantiated after declaration. So > to make it easy, just add a NEW to the DIM line: > > DIM x AS NEW String[20] > > And now let me see how I did this in my programs... It's been a long > time since I needed that: > > In the Form declaration part, I have > > PRIVATE mTxt AS NEW Object[] > > In the Form there is a TabStrip, and on this TabStrip the "fields" > (TextBoxes) shall appear. The TabStrip for this "mask" is called > "Maske". (fldNr is the field number) In the SUB which builds the mask, I > wrote for example: > > INC fldNr > mTxt.Resize(fldNr + 1) > mTxt[fldNr] = NEW TextBox(Maske) AS "MaskeFeld" > mTxt[fldNr].Tag = wert[8] 'fldNr > mTxt[fldNr].ToolTip = wert[8] > mTxt[fldNr].X = Val(wert[2]) > mTxt[fldNr].Y = Val(wert[3]) > > A new TextBox-Object is created, and then some values are applied which > come from another array ("wert"). But why did I need to declare AS > "MaskeFeld"? Just to be able to catch events like > > PUBLIC SUB MaskeFeld_Change() > > MaskenSpeichern > > 'the contents of all the TextBoxes is saved if you type into one of them > > END > > Caution: In order to delete the TextBoxes, you have to delete them piece > for piece from the array prior to deleting the array, such as > > FOR i = mTxt.Count - 1 TO 0 STEP -1 > mTxt[i].Delete > NEXT > mTxt.Clear > > Hope this helps you... > > Regards > > Rolf > > > Am 07.10.2010 09:04, schrieb Biro Zoltan: > > Thank you Rolf to helping me. > > Please take a look on the folowing piece of code: > > (I never used array of texboxes, but I think is something like I did > > here) > > > > PUBLIC SUB filltheboxes() > > > > DIM x AS String[20] > > DIM y[20] AS TextBox > > DIM i AS Short > > > > x[0] = "1" > > x[1] = "2" > > x[2] = "3" > > x[3] = "4" > > x[4] = "5" > > x[5] = "6" > > x[6] = "7" > > x[7] = "8" > > x[8] = "9" > > x[9] = "10" > > x[10] = "11" > > x[11] = "12" > > x[12] = "13" > > x[13] = "14" > > x[14] = "15" > > x[15] = "16" > > x[16] = "17" > > x[17] = "18" > > x[18] = "19" > > x[19] = "20" > > > > i = 0 > > FOR i = 0 TO 19 > > y[i].text = x[i] > > NEXT > > > > END > > > > Why this code return a "Null object" error code?? > > > > I hope to can be solved in Gambas2 more simply the substitute problem. I > > used before FoxPro for Windows. Here is simple: > > > > i=1 > > for i=1 to 20 > > boxname="n"+str(i) > > &boxname.text=" enithyng " > > endfor > > Is something in Gambas2 similar for&boxname.text, like in Foxpro? > > > > For me the second variant seems to be more simply, but please explain me > > why I have "Null object" error on the gambas2 code > > > > > > 2010. 10. 7, cs?t?rt?k keltez?ssel 08.23-kor Rolf-Werner Eilert ezt > > ?rta: > >> Am 07.10.2010 08:11, schrieb Biro Zoltan: > >>> Hello, > >>> > >>> I will try to explain with my poor english exacly what I wish to do: > >>> > >>> 1.I have 20 pcs of valueboxes named: n1,n2,n3...n20 > >>> 2.I have a variable named i defined as short > >>> 3.I wish to substitute the numbers from the valueboxes name like in > >>> folowing example: > >>> > >>> i=0 > >>> for i=0 to list.count > >>> > >>> 'here I wist to give values to the valueboxes: > >>> > >>> ni.value=list[i].text > >>> > >>> next > >>> > >>> Can I substitute the numbers with the value of i? How? > >>> > >>> Thank you. > >>> > >>> Zoli B. > >>> > >>> > >> > >> Wouldn't it be easier to just make an array of valueboxes? That would > >> enable you to write > >> > >> ni[i].value = list[i].text > >> > >> and Gambas would have direct access to each of the valueboxes during > >> runtime. > >> > >> Regards > >> > >> Rolf > >> > >> ------------------------------------------------------------------------------ > >> Beautiful is writing same markup. Internet Explorer 9 supports > >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > >> Spend less time writing and rewriting code and more time creating great > >> experiences on the web. Be a part of the beta today. > >> http://p.sf.net/sfu/beautyoftheweb > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > ------------------------------------------------------------------------------ > > Beautiful is writing same markup. Internet Explorer 9 supports > > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > > Spend less time writing and rewriting code and more time creating great > > experiences on the web. Be a part of the beta today. > > http://p.sf.net/sfu/beautyoftheweb > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From rterry at ...1946... Thu Oct 7 12:32:02 2010 From: rterry at ...1946... (richard terry) Date: Thu, 7 Oct 2010 21:32:02 +1100 Subject: [Gambas-user] Control + key combination detection Q Message-ID: <201010072132.02477.rterry@...1946...> From jscops at ...11... Thu Oct 7 16:11:02 2010 From: jscops at ...11... (Jack) Date: Thu, 07 Oct 2010 16:11:02 +0200 Subject: [Gambas-user] Control + key combination detection Q In-Reply-To: <201010072132.02477.rterry@...1946...> References: <201010072132.02477.rterry@...1946...> Message-ID: <4CADD4F6.6020306@...11...> richard terry a ?crit : >>From the docs: > > If Key.Code = Key["R"] And If Key.Control Then > Print "You hit CTRL+R" > End If > > If my hands this does the following > Key.code = 1677724 > Key["R"] = 82 > Key.control = 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? Perhaps this code ? IF key.Control THEN IF key.code = key["R"] THEN Print "You hit CTRL+R" End If Jack From rterry at ...1946... Thu Oct 7 23:50:10 2010 From: rterry at ...1946... (richard terry) Date: Fri, 8 Oct 2010 08:50:10 +1100 Subject: [Gambas-user] Control + key combination detection Q In-Reply-To: <4CADD4F6.6020306@...11...> References: <201010072132.02477.rterry@...1946...> <4CADD4F6.6020306@...11...> Message-ID: <201010080850.10329.rterry@...1946...> On Friday 08 October 2010 01:11:02 Jack wrote: > richard terry a ?crit : > >>From the docs: > > > > If Key.Code = Key["R"] And If Key.Control Then > > Print "You hit CTRL+R" > > End If > > > > If my hands this does the following > > Key.code = 1677724 > > Key["R"] = 82 > > Key.control = 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? > > Perhaps this code ? > > IF key.Control THEN > IF key.code = key["R"] THEN > Print "You hit CTRL+R" > End If Key.code = 1677724 Key["R"] = 82 As pointed out above this is the problem, should work according to the docs but returns different numbers > > Jack > > > > > --------------------------------------------------------------------------- > --- Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jscops at ...11... Fri Oct 8 01:16:31 2010 From: jscops at ...11... (Jack) Date: Fri, 08 Oct 2010 01:16:31 +0200 Subject: [Gambas-user] Control + key combination detection Q In-Reply-To: <201010080850.10329.rterry@...1946...> References: <201010072132.02477.rterry@...1946...> <4CADD4F6.6020306@...11...> <201010080850.10329.rterry@...1946...> Message-ID: <4CAE54CF.5010100@...11...> richard terry a ?crit : > On Friday 08 October 2010 01:11:02 Jack wrote: >> richard terry a ?crit : >>> >From the docs: >>> >>> If Key.Code = Key["R"] And If Key.Control Then >>> Print "You hit CTRL+R" >>> End If >>> >>> If my hands this does the following >>> Key.code = 1677724 >>> Key["R"] = 82 >>> Key.control = 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? >> Perhaps this code ? >> >> IF key.Control THEN >> IF key.code = key["R"] THEN >> Print "You hit CTRL+R" >> End If > > Key.code = 1677724 > Key["R"] = 82 > > As pointed out above this is the problem, should work according to the docs > but returns different numbers > In my box. Key.control = 4129 and key["R"] = 82. But as it is say in the doc, "Never compare the value of this property with a numeric constant, because the key codes may depend on the underlying toolkit. Always use the constants defined in this class! " From gambas at ...1... Fri Oct 8 02:05:18 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 02:05:18 +0200 Subject: [Gambas-user] Control + key combination detection Q In-Reply-To: <201010080850.10329.rterry@...1946...> References: <201010072132.02477.rterry@...1946...> <4CADD4F6.6020306@...11...> <201010080850.10329.rterry@...1946...> Message-ID: <201010080205.18710.gambas@...1...> > On Friday 08 October 2010 01:11:02 Jack wrote: > > richard terry a ?crit : > > >>From the docs: > > > If Key.Code = Key["R"] And If Key.Control Then > > > > > > Print "You hit CTRL+R" > > > > > > End If > > > > > > If my hands this does the following > > > > > > Key.code = 1677724 > > > > > > Key["R"] = 82 > > > > > > Key.control = 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? > > > > Perhaps this code ? > > > > IF key.Control THEN > > > > IF key.code = key["R"] THEN > > > > Print "You hit CTRL+R" > > > > End If > > Key.code = 1677724 > Key["R"] = 82 > It works as expected with gb.qt4. That Key.Code is the code of the CTRL key. You receive it when the CTRL key is pressed, not when the R key is pressed. Note that gb.gtk makes a difference between the Key.Code of 'R' and 'r', whereas it should not. I will try to fix that. Regards, -- Beno?t Minisini From rterry at ...1946... Fri Oct 8 03:18:16 2010 From: rterry at ...1946... (richard terry) Date: Fri, 8 Oct 2010 12:18:16 +1100 Subject: [Gambas-user] Control + key combination detection Q In-Reply-To: <201010080205.18710.gambas@...1...> References: <201010072132.02477.rterry@...1946...> <201010080850.10329.rterry@...1946...> <201010080205.18710.gambas@...1...> Message-ID: <201010081218.16033.rterry@...1946...> On Friday 08 October 2010 11:05:18 Beno?t Minisini wrote: > > On Friday 08 October 2010 01:11:02 Jack wrote: > > > richard terry a ?crit : > > > >>From the docs: > > > > > > > > If Key.Code = Key["R"] And If Key.Control Then > > > > > > > > Print "You hit CTRL+R" > > > > > > > > End If > > > > > > > > If my hands this does the following > > > > > > > > Key.code = 1677724 > > > > > > > > Key["R"] = 82 > > > > > > > > Key.control = 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? > > > > > > Perhaps this code ? > > > > > > IF key.Control THEN > > > > > > IF key.code = key["R"] THEN > > > > > > Print "You hit CTRL+R" > > > > > > End If > > > > Key.code = 1677724 > > Key["R"] = 82 > > It works as expected with gb.qt4. > > That Key.Code is the code of the CTRL key. You receive it when the CTRL key > is pressed, not when the R key is pressed. > > Note that gb.gtk makes a difference between the Key.Code of 'R' and 'r', > whereas it should not. I will try to fix that. > > Regards, > Sorry to be dumb, then how can I dectect Crl R? From demosthenesk at ...626... Fri Oct 8 10:20:44 2010 From: demosthenesk at ...626... (user) Date: Fri, 08 Oct 2010 11:20:44 +0300 Subject: [Gambas-user] Editor autocomplete error. Message-ID: <1286526044.4798.5.camel@...2493...> Good morning to all, i think i found an error in Editor Autocomplete function. i have a checkbox named chkNotComplete 1) when i am in editor while i am writing the name of object it pops up the autocomplete popup box. In there, there is not the name of the checkbox control but only its method of click. For all others controls there are the names and also the method click. is this a bug? See screenshot. -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot-1.png Type: image/png Size: 183752 bytes Desc: not available URL: From gambas at ...1... Fri Oct 8 14:51:45 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 14:51:45 +0200 Subject: [Gambas-user] Editor autocomplete error. In-Reply-To: <1286526044.4798.5.camel@...2493...> References: <1286526044.4798.5.camel@...2493...> Message-ID: <201010081451.45447.gambas@...1...> > Good morning to all, > > i think i found an error in Editor Autocomplete function. > > i have a checkbox named chkNotComplete > > 1) when i am in editor while i am writing the name of object it pops up > the autocomplete popup box. > > In there, there is not the name of the checkbox control but only its > method of click. > > For all others controls there are the names and also the method click. > > is this a bug? > > See screenshot. Not really: when you have little black dots before the completion, that means that you have a list of identifiers already entered in the source file. If you never typed "chkNotComplete", you won't see it in the list. Maybe I could add the control names in the list anyway... -- Beno?t Minisini From gambas at ...1... Fri Oct 8 15:05:23 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 15:05:23 +0200 Subject: [Gambas-user] Control + key combination detection Q In-Reply-To: <201010081218.16033.rterry@...1946...> References: <201010072132.02477.rterry@...1946...> <201010080205.18710.gambas@...1...> <201010081218.16033.rterry@...1946...> Message-ID: <201010081505.23297.gambas@...1...> > > > > It works as expected with gb.qt4. > > > > That Key.Code is the code of the CTRL key. You receive it when the CTRL > > key > > > > is pressed, not when the R key is pressed. > > > > Note that gb.gtk makes a difference between the Key.Code of 'R' and 'r', > > whereas it should not. I will try to fix that. > > > > Regards, > > Sorry to be dumb, then how can I dectect Crl R? > I think I understand the problem: apparently keypress events are lost when they are used by a menu shortcut. I don't see them anymore, even in the event loop. No idea why, it didn't work like that before, so I think Qt4 has changed something recently about that. I will investigate... -- Beno?t Minisini From demosthenesk at ...626... Fri Oct 8 16:06:12 2010 From: demosthenesk at ...626... (user) Date: Fri, 08 Oct 2010 17:06:12 +0300 Subject: [Gambas-user] Editor autocomplete error. In-Reply-To: <201010081451.45447.gambas@...1...> References: <1286526044.4798.5.camel@...2493...> <201010081451.45447.gambas@...1...> Message-ID: <1286546772.2548.3.camel@...2494...> it could be nice after adding a control to a Form to use it directly in code editor and not to wait to write it once in editor in order to autocomplete. This work is made often to me, and i wandered why the controls do not appeared in autocomplete pop up... On Fri, 2010-10-08 at 14:51 +0200, Beno?t Minisini wrote: > > Good morning to all, > > > > i think i found an error in Editor Autocomplete function. > > > > i have a checkbox named chkNotComplete > > > > 1) when i am in editor while i am writing the name of object it pops up > > the autocomplete popup box. > > > > In there, there is not the name of the checkbox control but only its > > method of click. > > > > For all others controls there are the names and also the method click. > > > > is this a bug? > > > > See screenshot. > > Not really: when you have little black dots before the completion, that means > that you have a list of identifiers already entered in the source file. If you > never typed "chkNotComplete", you won't see it in the list. > > Maybe I could add the control names in the list anyway... > From gambas at ...1... Fri Oct 8 20:33:30 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 20:33:30 +0200 Subject: [Gambas-user] Control + key combination detection Q In-Reply-To: <201010081505.23297.gambas@...1...> References: <201010072132.02477.rterry@...1946...> <201010081218.16033.rterry@...1946...> <201010081505.23297.gambas@...1...> Message-ID: <201010082033.30908.gambas@...1...> > > > It works as expected with gb.qt4. > > > > > > That Key.Code is the code of the CTRL key. You receive it when the CTRL > > > key > > > > > > is pressed, not when the R key is pressed. > > > > > > Note that gb.gtk makes a difference between the Key.Code of 'R' and > > > 'r', whereas it should not. I will try to fix that. > > > > > > Regards, > > > > Sorry to be dumb, then how can I dectect Crl R? > > I think I understand the problem: apparently keypress events are lost when > they are used by a menu shortcut. I don't see them anymore, even in the > event loop. > > No idea why, it didn't work like that before, so I think Qt4 has changed > something recently about that. > > I will investigate... OK. After having read the Qt source code, I can confirm that now, when a shortcut is defined, it is impossible for the gb.qt4 component to see the corresponding keypress event. I understand the logical behind that, but unfortunately that means I don't have the same behaviour now between gb.qt4 and gb.gtk. And I don't know if I can make gb.gtk behave like that! As for you, just don't want to catch CTRL+R whereas you have a menu shortcut using that key. Regards, -- Beno?t Minisini From gambas at ...1... Fri Oct 8 20:40:27 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 20:40:27 +0200 Subject: [Gambas-user] Error after project is compiled In-Reply-To: References: <201009281910.04456.gambas@...1...> Message-ID: <201010082040.27697.gambas@...1...> > gambas3: build 3247 > > output attached... > Nothing horrible in that output, except a reference on gb.qt. That means that you never uninstall Gambas 3 since you compiled it for the first time. Can you try to purge your system from everything coming from Gambas 3 and do the compilation & installation again? -- Beno?t Minisini From gambas at ...1... Fri Oct 8 20:42:23 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 20:42:23 +0200 Subject: [Gambas-user] desktop.sendmail cause application hang In-Reply-To: <201009231729.56976.gambas@...1...> References: <201009231729.56976.gambas@...1...> Message-ID: <201010082042.23588.gambas@...1...> > > Tanks Beno?t, > > as you suggested i made a process with SHELL to send the mail using > > xdg-email. > > Seems the Gambas form does not freeze anymore. > > After that i turned back using desktop.sendmail and the form freeze > > again. I'll investigate further, will update. > > Regards, > > Emanuele > > So that means there is something in the way Gambas uses xdg-email... Can you tell me what is printed if you run: $ xdg-email --version -- Beno?t Minisini From jussi.lahtinen at ...626... Fri Oct 8 21:04:24 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Fri, 8 Oct 2010 22:04:24 +0300 Subject: [Gambas-user] Error after project is compiled In-Reply-To: <201010082040.27697.gambas@...1...> References: <201009281910.04456.gambas@...1...> <201010082040.27697.gambas@...1...> Message-ID: I have used these commands to clear old installation. *sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 /usr/local/bin/gbi3 sudo rm -rf /usr/local/lib/gambas3 sudo rm -rf /usr/local/share/gambas3* In fact I have this on script for compiling Gambas: *#!/bin/sh sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 /usr/local/bin/gbi3 sudo rm -rf /usr/local/lib/gambas3 sudo rm -rf /usr/local/share/gambas3 cd ~/trunk ./reconf-all && ./configure -C && make && sudo make install sudo -k* Jussi 2010/10/8 Beno?t Minisini > > gambas3: build 3247 > > > > output attached... > > > > Nothing horrible in that output, except a reference on gb.qt. That means > that > you never uninstall Gambas 3 since you compiled it for the first time. > > Can you try to purge your system from everything coming from Gambas 3 and > do > the compilation & installation again? > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Fri Oct 8 21:07:34 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 21:07:34 +0200 Subject: [Gambas-user] Error after project is compiled In-Reply-To: References: <201010082040.27697.gambas@...1...> Message-ID: <201010082107.34862.gambas@...1...> > I have used these commands to clear old installation. > *sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 > /usr/local/bin/gbi3 > sudo rm -rf /usr/local/lib/gambas3 > sudo rm -rf /usr/local/share/gambas3* > > In fact I have this on script for compiling Gambas: > *#!/bin/sh > sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 > /usr/local/bin/gbi3 > sudo rm -rf /usr/local/lib/gambas3 > sudo rm -rf /usr/local/share/gambas3 > cd ~/trunk > ./reconf-all && ./configure -C && make && sudo make install > sudo -k* > > Jussi > There is a reference on a gb.qt.component file in the compilation installation. Can you find that file on your hard disk? -- Beno?t Minisini From jussi.lahtinen at ...626... Fri Oct 8 21:50:31 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Fri, 8 Oct 2010 22:50:31 +0300 Subject: [Gambas-user] Error after project is compiled In-Reply-To: <201010082107.34862.gambas@...1...> References: <201010082040.27697.gambas@...1...> <201010082107.34862.gambas@...1...> Message-ID: Maybe you mix up Jussi and Jason... I posted this just as a tip. Jussi 2010/10/8 Beno?t Minisini > > I have used these commands to clear old installation. > > *sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 > > /usr/local/bin/gbi3 > > sudo rm -rf /usr/local/lib/gambas3 > > sudo rm -rf /usr/local/share/gambas3* > > > > In fact I have this on script for compiling Gambas: > > *#!/bin/sh > > sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 > > /usr/local/bin/gbi3 > > sudo rm -rf /usr/local/lib/gambas3 > > sudo rm -rf /usr/local/share/gambas3 > > cd ~/trunk > > ./reconf-all && ./configure -C && make && sudo make install > > sudo -k* > > > > Jussi > > > > There is a reference on a gb.qt.component file in the compilation > installation. Can you find that file on your hard disk? > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Fri Oct 8 21:57:08 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 8 Oct 2010 21:57:08 +0200 Subject: [Gambas-user] Error after project is compiled In-Reply-To: References: <201010082107.34862.gambas@...1...> Message-ID: <201010082157.08361.gambas@...1...> > Maybe you mix up Jussi and Jason... > I posted this just as a tip. > > Jussi > > Oops, sorry: I stopped at the first character. :-) -- Beno?t Minisini From sotema at ...626... Sat Oct 9 00:12:46 2010 From: sotema at ...626... (Emanuele Sottocorno) Date: Sat, 09 Oct 2010 00:12:46 +0200 Subject: [Gambas-user] desktop.sendmail cause application hang In-Reply-To: References: Message-ID: <1286575966.8445.3.camel@...2476...> emanuele at ...2476...:~$ xdg-email --version xdg-email 1.0.1 Regards, Emanuele > > > Tanks Beno?t, > > > as you suggested i made a process with SHELL to send the > mail using > > > xdg-email. > > > Seems the Gambas form does not freeze anymore. > > > After that i turned back using desktop.sendmail and the > form freeze > > > again. I'll investigate further, will update. > > > Regards, > > > Emanuele > > > > So that means there is something in the way Gambas uses > xdg-email... > > Can you tell me what is printed if you run: > $ xdg-email --version > > -- > Beno?t Minisini > From rterry at ...1946... Sat Oct 9 06:29:18 2010 From: rterry at ...1946... (richard terry) Date: Sat, 9 Oct 2010 15:29:18 +1100 Subject: [Gambas-user] Dumb columnview question Message-ID: <201010091529.18382.rterry@...1946...> Despite reading the docs, I can't figure out how to set the columnview mode to either multiple or single in code. Any help appreciated. From jscops at ...11... Sat Oct 9 08:02:37 2010 From: jscops at ...11... (Jack) Date: Sat, 09 Oct 2010 08:02:37 +0200 Subject: [Gambas-user] Dumb columnview question In-Reply-To: <201010091529.18382.rterry@...1946...> References: <201010091529.18382.rterry@...1946...> Message-ID: <4CB0057D.5070409@...11...> richard terry a ?crit : > Despite reading the docs, I can't figure out how to set the columnview mode to > either multiple or single in code. > > Any help appreciated. Columnview.mode = select.multiple Columnview.mode = select.single Jack From gambas at ...1... Sat Oct 9 15:58:01 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sat, 9 Oct 2010 15:58:01 +0200 Subject: [Gambas-user] desktop.sendmail cause application hang In-Reply-To: <1286575966.8445.3.camel@...2476...> References: <1286575966.8445.3.camel@...2476...> Message-ID: <201010091558.01756.gambas@...1...> > emanuele at ...2476...:~$ xdg-email --version > xdg-email 1.0.1 > > Regards, > Emanuele > I have updated the gb.desktop component, in revision #3264, with the latest scripts from the portland CVS. Please, can you try to run Desktop.SendMail() again with them and see if you have the freeze yet? Thanks in advance. Regards, -- Beno?t Minisini From kevinfishburne at ...1887... Sun Oct 10 01:37:12 2010 From: kevinfishburne at ...1887... (kevinfishburne) Date: Sat, 9 Oct 2010 16:37:12 -0700 (PDT) Subject: [Gambas-user] someshort="xy" returns "Wanted short, got string instead" In-Reply-To: <201009162353.57215.gambas@...1...> References: <29715645.post@...1379...> <4C90C04A.4020402@...20...> <4C90C917.4080401@...20...> <29721157.post@...1379...> <4C927C21.1070902@...20...> <201009162353.57215.gambas@...1...> Message-ID: <29925084.post@...1379...> Beno?t Minisini wrote: > >> > I can only think of two solutions here. One is to find a way to convert >> a >> > two-character string to a short as quickly as possible (the subject of >> > the post), and the other is to change the way I'm collecting the data >> to > > I have neve seen that mail, Kevin. Did it go to the mailing-list? > > If I resume, you want to send the contents of an array of short on a UDP > socket, and get it back on the other end of the socket? > I generally post through the Nabble forum, as direct mailing list emails have been placed in a queue that never gets processed. I'll leave that to a later date to solve. Basically I'm sending mixed datatypes as a single UDP packet. There may be 1024 Bytes followed by 512 Shorts, etc., in a known sequence that can be interpreted by the client. When the client interprets the data in the received UDP packet it needs to assign different pieces of it to variables of varying datatypes. The string is constructed on one side then deconstructed on the other. There may be something fundamental that I'm missing (no surprise), but the packet data is being received as a String and as such I must convert segments of that string to the corresponding datatypes. I'm currently trying to write a function to convert a four-byte segment of the string to a Single, and have a conversion module for all the other datatypes that could be encoded in the UDP string. My current conversion function for Shorts is similar to Tobi's suggestion: PUBLIC FUNCTION ToShort(source AS String) AS Short ' Convert a two-byte string to a short datatype value. RETURN Asc(Mid$(source, 2, 1)) * 256 + Asc(Mid$(source, 1, 1)) END This works well, but I need similar functions for most common datatypes (Integer, Long, Single, Float). Is this possible, or am I making a fundamental programming mistake and there is an easier way? The app in question will push the limits of typical upstream bandwidth so I need to keep the packet size/frequency as low as possible. Most network transactions will not consist of arrays, but a few values that must be sent as raw data rather than numerical text strings. ----- Kevin Fishburne, Eight Virtues www: http://sales.eightvirtues.com http://sales.eightvirtues.com e-mail: mailto:sales at ...1887... sales at ...1887... phone: (770) 853-6271 -- View this message in context: http://old.nabble.com/someshort%3D%22xy%22-returns-%22Wanted-short%2C-got-string-instead%22-tp29715645p29925084.html Sent from the gambas-user mailing list archive at Nabble.com. From sotema at ...626... Sun Oct 10 14:47:26 2010 From: sotema at ...626... (Emanuele Sottocorno) Date: Sun, 10 Oct 2010 14:47:26 +0200 Subject: [Gambas-user] desktop.sendmail cause application hang Message-ID: <1286714846.1942.18.camel@...2476...> Hi Beno?t, i'm sorry it still freeze with #3264 I think is a Ubuntu problem, maybe they did something not standard. I found another issue with Desktop.Count that ever report 1 regardless how many desktop i have in use (If You want I will send another post to the list). On Fedora 13, using the same xdg tools version and the same Gnome revision, both works fine. Thanks for the effort you put in developing Gambas. Emanuele From rterry at ...1946... Sat Oct 9 10:09:03 2010 From: rterry at ...1946... (richard terry) Date: Sat, 9 Oct 2010 19:09:03 +1100 Subject: [Gambas-user] Dumb columnview question In-Reply-To: <4CB0057D.5070409@...11...> References: <201010091529.18382.rterry@...1946...> <4CB0057D.5070409@...11...> Message-ID: <201010091909.03334.rterry@...1946...> On Saturday 09 October 2010 17:02:37 Jack wrote: > richard terry a ?crit : > > Despite reading the docs, I can't figure out how to set the columnview > > mode to either multiple or single in code. > > > > Any help appreciated. > > Columnview.mode = select.multiple > Columnview.mode = select.single thanks > > Jack > > > > --------------------------------------------------------------------------- > --- Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From nilesh.barange at ...626... Mon Oct 11 10:23:44 2010 From: nilesh.barange at ...626... (nilesh barange) Date: Mon, 11 Oct 2010 01:23:44 -0700 Subject: [Gambas-user] installation error in ubuntu Message-ID: Dear All I am facing following error while installing Gambas on ubuntu system. I have attached output.txt for reference. -- Thanks & Regards Nilesh -------------- next part -------------- configure: loading cache config.cache checking whether to enable maintainer-specific portions of Makefiles... no checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in main (/home/nilesh/gps/gambas2-2.18.0/main) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking whether gcc and cc understand -c and -o together... (cached) yes checking for external internationalization library headers... (cached) /usr/include/ checking for external internationalization library libraries... (cached) no configure: This library may be located inside the system C library, so let's go on... checking for optional external charset conversion library headers... (cached) /usr/include/ checking for optional external charset conversion library libraries... (cached) no configure: This library may be located inside the system C library, so let's go on... checking for foreign function interface component with pkg-config... no configure: Cannot find libffi support with pkg-config checking for foreign function interface headers... (cached) no checking for foreign function interface libraries... (cached) no configure: WARNING: *** foreign function interface is disabled checking for xdg-mime... (cached) xdg-mime configure: creating ./config.status config.status: creating Makefile config.status: creating share/Makefile config.status: creating gbc/Makefile config.status: creating gbx/Makefile config.status: creating lib/Makefile config.status: creating lib/debug/Makefile config.status: creating lib/eval/Makefile config.status: creating lib/db/Makefile config.status: creating lib/vb/Makefile config.status: creating lib/compress/Makefile config.status: creating lib/option/Makefile config.status: creating lib/draw/Makefile config.status: creating lib/gui/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.compress.bzlib2 (/home/nilesh/gps/gambas2-2.18.0/gb.compress.bzlib2) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for bzlib2 compression headers... (cached) no checking for bzlib2 compression libraries... (cached) no configure: WARNING: *** bzlib2 compression is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.compress.zlib (/home/nilesh/gps/gambas2-2.18.0/gb.compress.zlib) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for zlib compression headers... (cached) no checking for zlib compression libraries... (cached) no configure: WARNING: *** zlib compression is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.db.mysql (/home/nilesh/gps/gambas2-2.18.0/gb.db.mysql) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for MySQL driver headers... (cached) no checking for MySQL driver libraries... (cached) no configure: WARNING: *** MySQL driver is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.db.odbc (/home/nilesh/gps/gambas2-2.18.0/gb.db.odbc) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for ODBC driver headers... (cached) no checking for ODBC driver libraries... (cached) no configure: WARNING: *** ODBC driver is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.db.postgresql (/home/nilesh/gps/gambas2-2.18.0/gb.db.postgresql) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for PostgreSQL driver headers... (cached) no checking for PostgreSQL driver libraries... (cached) no configure: WARNING: *** PostgreSQL driver is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.db.sqlite2 (/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite2) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for SQLite 2 driver headers... (cached) no checking for SQLite 2 driver libraries... (cached) no configure: WARNING: *** SQLite 2 driver is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.db.sqlite3 (/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite3) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for SQLite 3 driver headers... (cached) no checking for SQLite 3 driver libraries... (cached) /usr/lib/firefox-3.6.8/ configure: WARNING: *** SQLite 3 driver is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.db.firebird (/home/nilesh/gps/gambas2-2.18.0/gb.db.firebird) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for firebird driver headers... (cached) checking for firebird driver libraries... (cached) no configure: WARNING: *** firebird driver is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.gtk (/home/nilesh/gps/gambas2-2.18.0/gb.gtk) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for X... (cached) no no configure: WARNING: *** GTK+ toolkit is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/ext/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.gtk.svg (/home/nilesh/gps/gambas2-2.18.0/gb.gtk.svg) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for X... (cached) no no configure: WARNING: *** GTK+ component is disabled no configure: WARNING: *** SVG loader for GTK+ is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.pdf (/home/nilesh/gps/gambas2-2.18.0/gb.pdf) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for Poppler PDF library component with pkg-config... no configure: WARNING: *** Poppler PDF library is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.net (/home/nilesh/gps/gambas2-2.18.0/gb.net) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for Networking component headers... (cached) checking for Networking component libraries... (cached) configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.net.curl (/home/nilesh/gps/gambas2-2.18.0/gb.net.curl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for Advanced networking component component with pkg-config... no configure: WARNING: *** Advanced networking component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.net.smtp (/home/nilesh/gps/gambas2-2.18.0/gb.net.smtp) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for STMP client component with pkg-config... no configure: WARNING: *** STMP client is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.pcre (/home/nilesh/gps/gambas2-2.18.0/gb.pcre) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for Perl Compatible Regular Expression component headers... (cached) no checking for Perl Compatible Regular Expression component libraries... (cached) no configure: WARNING: *** Perl Compatible Regular Expression component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.qt (/home/nilesh/gps/gambas2-2.18.0/gb.qt) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for X... (cached) no checking for QT meta-object compiler... (cached) configure: WARNING: QT moc compiler not found. Try --with-moc option. configure: WARNING: *** QT component is disabled configure: WARNING: *** QT OpenGL component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/share/Makefile config.status: creating src/ext/Makefile config.status: creating src/opengl/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.qte (/home/nilesh/gps/gambas2-2.18.0/gb.qte) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for QT meta-object compiler... (cached) configure: WARNING: QT moc compiler not found. Try --with-moc option. configure: WARNING: *** QT/Embedded component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/share/Makefile config.status: creating src/ext/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.qt.kde (/home/nilesh/gps/gambas2-2.18.0/gb.qt.kde) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for X... (cached) no checking for QT meta-object compiler... (cached) configure: WARNING: QT moc compiler not found. Try --with-moc option. configure: WARNING: *** QT component is disabled configure: WARNING: *** KDE 3.x component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/html/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.sdl (/home/nilesh/gps/gambas2-2.18.0/gb.sdl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for X... (cached) no checking for sdl-config... (cached) no checking for SDL - version >= 1.2.8... no *** The sdl-config script installed by SDL could not be found *** If SDL was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the SDL_CONFIG environment variable to the *** full path to sdl-config. checking for XcursorLibraryLoadCursor in -lXcursor... (cached) no configure: WARNING: libXcursor not found. Check 'config.log' for more details. checking for XftListFonts in -lXft... (cached) no configure: WARNING: libXft not found. Check 'config.log' for more details. configure: WARNING: *** SDL is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.sdl.sound (/home/nilesh/gps/gambas2-2.18.0/gb.sdl.sound) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for sdl-config... (cached) no checking for SDL - version >= 1.2.8... no *** The sdl-config script installed by SDL could not be found *** If SDL was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the SDL_CONFIG environment variable to the *** full path to sdl-config. configure: WARNING: *** SDL sound is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.xml (/home/nilesh/gps/gambas2-2.18.0/gb.xml) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for XML parser component component with pkg-config... no configure: WARNING: *** XML parser component is disabled no configure: WARNING: *** XSLT/XML parser component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/xslt/Makefile config.status: creating src/rpc/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.v4l (/home/nilesh/gps/gambas2-2.18.0/gb.v4l) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for Video For Linux component headers... (cached) no checking for Video For Linux component libraries... (cached) no configure: WARNING: *** Video For Linux component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.crypt (/home/nilesh/gps/gambas2-2.18.0/gb.crypt) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for DES/MD5 crypt component headers... (cached) /usr/include/ checking for DES/MD5 crypt component libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.opengl (/home/nilesh/gps/gambas2-2.18.0/gb.opengl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for X... (cached) no checking for GL/glx.h... (cached) no configure: WARNING: glx.h not found. Check 'config.log' for more details. configure: WARNING: *** openGL is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.corba (/home/nilesh/gps/gambas2-2.18.0/gb.corba) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for CORBA component headers... (cached) no checking for CORBA component libraries... (cached) no configure: WARNING: *** CORBA component is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.image (/home/nilesh/gps/gambas2-2.18.0/gb.image) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for Image processing component headers... (cached) checking for Image processing component libraries... (cached) configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.desktop (/home/nilesh/gps/gambas2-2.18.0/gb.desktop) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking how to run the C preprocessor... (cached) gcc -E checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl.exe... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) no checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) no checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for ar... (cached) ar checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... (cached) no checking whether g++ accepts -g... (cached) no checking dependency style of g++... (cached) none checking for objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for X... (cached) no checking for XTestQueryExtension in -lXtst... (cached) no configure: WARNING: *** Desktop-neutral routines is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in comp (/home/nilesh/gps/gambas2-2.18.0/comp) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in app (/home/nilesh/gps/gambas2-2.18.0/app) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes checking for xdg-mime... (cached) xdg-mime configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in examples (/home/nilesh/gps/gambas2-2.18.0/examples) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in help (/home/nilesh/gps/gambas2-2.18.0/help) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking whether ln -s works... yes configure: creating ./config.status config.status: creating Makefile config.status: creating help/Makefile config.status: creating config.h config.status: config.h is unchanged ************************************************************ THESE COMPONENTS ARE DISABLED: - gb.compress.bzlib2 - gb.compress.zlib - gb.corba - gb.db.firebird - gb.db.mysql - gb.db.odbc - gb.db.postgresql - gb.db.sqlite2 - gb.db.sqlite3 - gb.desktop - gb.gtk - gb.gtk.svg - gb.net.curl - gb.net.smtp - gb.opengl - gb.pcre - gb.pdf - gb.qt - gb.qt.kde - gb.qte - gb.sdl - gb.sdl.sound - gb.v4l - gb.xml ************************************************************ make all-recursive make[1]: Entering directory `/home/nilesh/gps/gambas2-2.18.0' Making all in main make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main' Making all in gbx make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/gbx' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/gbx' Making all in gbc make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/gbc' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/gbc' Making all in lib make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib' Making all in debug make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/debug' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/debug' Making all in eval make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/eval' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/eval' Making all in db make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/db' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/db' Making all in compress make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/compress' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/compress' Making all in vb make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/vb' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/vb' Making all in option make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/option' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/option' Making all in draw make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/draw' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/draw' Making all in gui make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/gui' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib/gui' make[5]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/lib' make[5]: Nothing to be done for `all-am'. make[5]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/lib' Making all in share make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main/share' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main/share' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/main' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/main' Making all in gb.compress.bzlib2 make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.bzlib2' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.bzlib2' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.bzlib2' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.bzlib2' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.bzlib2' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.bzlib2' Making all in gb.compress.zlib make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.zlib' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.zlib' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.zlib' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.zlib' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.zlib' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.compress.zlib' Making all in gb.db.mysql make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.mysql' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.mysql' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.mysql' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.mysql' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.mysql' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.mysql' Making all in gb.db.odbc make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.odbc' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.odbc' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.odbc' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.odbc' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.odbc' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.odbc' Making all in gb.db.postgresql make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.postgresql' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.postgresql' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.postgresql' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.postgresql' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.postgresql' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.postgresql' Making all in gb.db.sqlite3 make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite3' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite3' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite3' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite3' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite3' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite3' Making all in gb.db.sqlite2 make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite2' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite2' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite2' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite2' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite2' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.sqlite2' Making all in gb.db.firebird make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.firebird' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.firebird' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.firebird' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.firebird' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.firebird' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.db.firebird' Making all in gb.gtk make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk' Making all in gb.net make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net' Making all in src make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net/src' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net/src' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net' Making all in gb.net.curl make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.curl' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.curl' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.curl' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.curl' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.curl' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.curl' Making all in gb.net.smtp make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.smtp' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.smtp' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.smtp' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.smtp' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.smtp' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.net.smtp' Making all in gb.pcre make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.pcre' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.pcre' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.pcre' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.pcre' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.pcre' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.pcre' Making all in gb.qt make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt' Making all in gb.qte make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qte' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qte' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qte' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qte' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qte' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qte' Making all in gb.qt.kde make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt.kde' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt.kde' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt.kde' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt.kde' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt.kde' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.qt.kde' Making all in gb.sdl make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl' Making all in gb.sdl.sound make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl.sound' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl.sound' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl.sound' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl.sound' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl.sound' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.sdl.sound' Making all in gb.xml make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.xml' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.xml' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.xml' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.xml' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.xml' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.xml' Making all in gb.v4l make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.v4l' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.v4l' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.v4l' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.v4l' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.v4l' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.v4l' Making all in gb.crypt make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt' Making all in src make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt/src' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt/src' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.crypt' Making all in gb.opengl make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.opengl' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.opengl' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.opengl' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.opengl' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.opengl' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.opengl' Making all in gb.corba make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.corba' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.corba' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.corba' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.corba' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.corba' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.corba' Making all in gb.pdf make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.pdf' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.pdf' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.pdf' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.pdf' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.pdf' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.pdf' Making all in gb.gtk.svg make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk.svg' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk.svg' make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk.svg' make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk.svg' make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk.svg' make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.gtk.svg' Making all in gb.image make[2]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.image' make all-recursive make[3]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.image' Making all in src make[4]: Entering directory `/home/nilesh/gps/gambas2-2.18.0/gb.image/src' source='main.cpp' object='gb_image_la-main.lo' libtool=yes \ DEPDIR=.deps depmode=none /bin/bash ../../depcomp \ /bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I.. -D_REENTRANT -pipe -Wall -fno-exceptions -Wno-unused-value -Wcast-align -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -O2 -c -o gb_image_la-main.lo `test -f 'main.cpp' || echo './'`main.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I.. -D_REENTRANT -pipe -Wall -fno-exceptions -Wno-unused-value -Wcast-align -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -O2 -c main.cpp -o .libs/gb_image_la-main.o ../libtool: line 993: g++: command not found make[4]: *** [gb_image_la-main.lo] Error 1 make[4]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.image/src' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.image' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.image' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0' make: *** [all] Error 2 From charles at ...1784... Mon Oct 11 13:53:41 2010 From: charles at ...1784... (charlesg) Date: Mon, 11 Oct 2010 04:53:41 -0700 (PDT) Subject: [Gambas-user] installation error in ubuntu In-Reply-To: References: Message-ID: <29933339.post@...1379...> You don't say what version Ubuntu. I can't see a reason to compile an old version of Gambas (2.18). Just enter: sudo apt-get install gambas2 from terminal. Do not add from Ubuntu repository ( e.g. 'Add/Remove' on 8.04). The repository versions tend to be incomplete. btw New Ubuntu Maverick (10.10) has version 2.21 in repository. I am not sure yet whether it is complete. nilesh barange wrote: > > Dear All > > I am facing following error while installing Gambas on ubuntu system. > > I have attached output.txt for reference. > > > -- > Thanks & Regards > Nilesh > > make[2]: Leaving directory `/home/nilesh/gps/gambas2-2.18.0/gb.image' > -- View this message in context: http://old.nabble.com/installation-error-in-ubuntu-tp29932015p29933339.html Sent from the gambas-user mailing list archive at Nabble.com. From kevinfishburne at ...1887... Tue Oct 12 06:33:44 2010 From: kevinfishburne at ...1887... (Kevin Fishburne) Date: Tue, 12 Oct 2010 00:33:44 -0400 Subject: [Gambas-user] someshort="xy" returns "Wanted short, got string instead" Message-ID: <4CB3E528.8090502@...1887...> I've had some trouble posting to the various GAMBAS mailing lists in the past and so have been using the Nabble forum, which generally has echoed my posted to the proper mailing list. It seems to not have been working so well recently though. As such I'm reposting my last post directly to the mailing list and hopefully it will be delivered. Here's the original thread for reference: http://old.nabble.com/someshort%3D%22xy%22-returns-%22Wanted-short,-got-string-instead%22-td29715645.html#a29732625 And here's my post: Beno?t Minisini wrote: > > I can only think of two solutions here. One is to find a way to convert a > > two-character string to a short as quickly as possible (the subject of > > the post), and the other is to change the way I'm collecting the data to I have neve seen that mail, Kevin. Did it go to the mailing-list? If I resume, you want to send the contents of an array of short on a UDP socket, and get it back on the other end of the socket? I generally post through the Nabble forum, as direct mailing list emails have been placed in a queue that never gets processed. I'll leave that to a later date to solve. Basically I'm sending mixed datatypes as a single UDP packet. There may be 1024 Bytes followed by 512 Shorts, etc., in a known sequence that can be interpreted by the client. When the client interprets the data in the received UDP packet it needs to assign different pieces of it to variables of varying datatypes. The string is constructed on one side then deconstructed on the other. There may be something fundamental that I'm missing (no surprise), but the packet data is being received as a String and as such I must convert segments of that string to the corresponding datatypes. I'm currently trying to write a function to convert a four-byte segment of the string to a Single, and have a conversion module for all the other datatypes that could be encoded in the UDP string. My current conversion function for Shorts is similar to Tobi's suggestion: PUBLIC FUNCTION ToShort(source AS String) AS Short ' Convert a two-byte string to a short datatype value. RETURN Asc(Mid$(source, 2, 1)) * 256 + Asc(Mid$(source, 1, 1)) END This works well, but I need similar functions for most common datatypes (Integer, Long, Single, Float). Is this possible, or am I making a fundamental programming mistake and there is an easier way? The app in question will push the limits of typical upstream bandwidth so I need to keep the packet size/frequency as low as possible. Most network transactions will not consist of arrays, but a few values that must be sent as raw data rather than numerical text strings. -- Kevin Fishburne Eight Virtues www: http://sales.eightvirtues.com e-mail: sales at ...1887... phone: (770) 853-6271 From demosthenesk at ...626... Tue Oct 12 20:47:03 2010 From: demosthenesk at ...626... (user) Date: Tue, 12 Oct 2010 21:47:03 +0300 Subject: [Gambas-user] Questions for RegExp class Message-ID: <1286909223.19122.2.camel@...2493...> Hi, i try to implement a regular expression with this code ----------------------------------------- DIM sRegEx AS Regexp sRegEx.Compile("\"") sRegEx.Exec(Global.txtUpdateOptions) ----------------------------------------- but in line of "compile" i get a NULL object. why? From ea7dfh at ...2382... Tue Oct 12 21:34:30 2010 From: ea7dfh at ...2382... (EA7DFH) Date: Tue, 12 Oct 2010 21:34:30 +0200 Subject: [Gambas-user] Questions for RegExp class In-Reply-To: <1286909223.19122.2.camel@...2493...> References: <1286909223.19122.2.camel@...2493...> Message-ID: <4CB4B846.1080606@...2382...> El 12/10/10 20:47, user escribi?: > Hi, > > i try to implement a regular expression with this code > > ----------------------------------------- > DIM sRegEx AS Regexp > > sRegEx.Compile("\"") > sRegEx.Exec(Global.txtUpdateOptions) > ----------------------------------------- > > but in line of "compile" i get a NULL object. > > why? You need to use the NEW keyword to instantiate the sRegEx variable: DIM sRegEx AS NEW Regexp or DIM sRegEx AS Regexp sRegEx = NEW Regexp http://gambasdoc.org/help/comp/gb.pcre/regexp/_new Regards, -- Jesus, EA7DFH From demosthenesk at ...626... Tue Oct 12 23:26:09 2010 From: demosthenesk at ...626... (user) Date: Wed, 13 Oct 2010 00:26:09 +0300 Subject: [Gambas-user] Questions for RegExp class In-Reply-To: <4CB4B846.1080606@...2382...> References: <1286909223.19122.2.camel@...2493...> <4CB4B846.1080606@...2382...> Message-ID: <1286918769.22641.0.camel@...2493...> Thanks, yes that was it. On Tue, 2010-10-12 at 21:34 +0200, EA7DFH wrote: > El 12/10/10 20:47, user escribi?: > > Hi, > > > > i try to implement a regular expression with this code > > > > ----------------------------------------- > > DIM sRegEx AS Regexp > > > > sRegEx.Compile("\"") > > sRegEx.Exec(Global.txtUpdateOptions) > > ----------------------------------------- > > > > but in line of "compile" i get a NULL object. > > > > why? > > You need to use the NEW keyword to instantiate the sRegEx variable: > > DIM sRegEx AS NEW Regexp > > or > > DIM sRegEx AS Regexp > sRegEx = NEW Regexp > > > http://gambasdoc.org/help/comp/gb.pcre/regexp/_new > > Regards, > From gambas at ...1... Wed Oct 13 00:42:03 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Wed, 13 Oct 2010 00:42:03 +0200 Subject: [Gambas-user] someshort="xy" returns "Wanted short, got string instead" In-Reply-To: <4CB3E528.8090502@...1887...> References: <4CB3E528.8090502@...1887...> Message-ID: <201010130042.03824.gambas@...1...> > I've had some trouble posting to the various GAMBAS mailing lists in > the past and so have been using the Nabble forum, which generally has > echoed my posted to the proper mailing list. It seems to not have been > working so well recently though. As such I'm reposting my last post > directly to the mailing list and hopefully it will be delivered. Here's > the original thread for reference: > > http://old.nabble.com/someshort%3D%22xy%22-returns-%22Wanted-short,-got-str > ing-instead%22-td29715645.html#a29732625 > First : if you post on nabble, then nabble will post on the mailing-list. So you will logically have more problem than if you post directly. Second : on a mailing-list, you never answer a thread with a mail that has no relation with it. So please post a new thread each time you start to talk about a new subject. > ... > > Basically I'm sending mixed datatypes as a single UDP packet. There may > be 1024 Bytes followed by 512 Shorts, etc., in a known sequence that can > be interpreted by the client. > > When the client interprets the data in the received UDP packet it needs > to assign different pieces of it to variables of varying datatypes. The > string is constructed on one side then deconstructed on the other. There > may be something fundamental that I'm missing (no surprise), but the > packet data is being received as a String and as such I must convert > segments of that string to the corresponding datatypes. > > I'm currently trying to write a function to convert a four-byte segment > of the string to a Single, and have a conversion module for all the > other datatypes that could be encoded in the UDP string. > > My current conversion function for Shorts is similar to Tobi's suggestion: > > PUBLIC FUNCTION ToShort(source AS String) AS Short > > ' Convert a two-byte string to a short datatype value. > > RETURN Asc(Mid$(source, 2, 1)) * 256 + Asc(Mid$(source, 1, 1)) > > END > > This works well, but I need similar functions for most common datatypes > (Integer, Long, Single, Float). Is this possible, or am I making a > fundamental programming mistake and there is an easier way? The app in > question will push the limits of typical upstream bandwidth so I need to > keep the packet size/frequency as low as possible. Most network > transactions will not consist of arrays, but a few values that must be > sent as raw data rather than numerical text strings. There is no good solution in Gambas 2 to forge UDP packets except the one you did. But in Gambas 3, the READ and WRITE instructions can serialize arrays and collection, and better, you have C-like structures. They are not serializable yet, but I should do that too if I keep being logical :-). So I suggest you use Gambas 3! If you don't succeed in compiling it, please post all the details (again?). It should not be harder than making Ubuntu Maverick work with a nvidia card. :-) (took me a day, I should have stayed with my Mandriva). Regards, -- Beno?t Minisini From gambas at ...1... Wed Oct 13 00:48:42 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Wed, 13 Oct 2010 00:48:42 +0200 Subject: [Gambas-user] someshort="xy" returns "Wanted short, got string instead" In-Reply-To: <201010130042.03824.gambas@...1...> References: <4CB3E528.8090502@...1887...> <201010130042.03824.gambas@...1...> Message-ID: <201010130048.42640.gambas@...1...> > > Second : on a mailing-list, you never answer a thread with a mail that has > no relation with it. So please post a new thread each time you start to > talk about a new subject. > Less rudely, I mean that 'someshort="xy"...' was not a good title, and made the all thread being lost in the mailing-list archives! -- Beno?t Minisini From rospolosco at ...152... Thu Oct 14 03:14:47 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Thu, 14 Oct 2010 03:14:47 +0200 Subject: [Gambas-user] compiling Gambas3 on slack 12.2 Message-ID: <201010140314.47956.rospolosco@...152...> Yes, I know. I should upgrade, but I'm lazy but my old slack 12.2 is perfect. Now I want to try Gambas3. So I downloades the svn version and ./reconf-all. I had this problems: stefano at ...1536...:~/trunk$ ./reconf-all libtoolize: unrecognized option `--nonrecursive' Try `libtoolize --help' for more information. autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal /usr/share/aclocal/imlib.m4:9: warning: underquoted definition of AM_PATH_IMLIB /usr/share/aclocal/imlib.m4:9: run info '(automake)Extending aclocal' /usr/share/aclocal/imlib.m4:9: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal autoreconf: configure.ac: tracing autoreconf: configure.ac: adding subdirectory main to autoreconf autoreconf: Entering directory `main' autoreconf: running: aclocal -I m4 --install /usr/share/aclocal/imlib.m4:9: warning: underquoted definition of AM_PATH_IMLIB /usr/share/aclocal/imlib.m4:9: run info '(automake)Extending aclocal' /usr/share/aclocal/imlib.m4:9: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal autoreconf: configure.ac: not using Libtool autoreconf: running: /usr/bin/autoconf autoreconf: running: /usr/bin/autoheader autoreconf: running: automake --add-missing --copy --no-force gbx/Makefile.am:5: library used but `RANLIB' is undefined gbx/Makefile.am:5: The usual way to define `RANLIB' is to add `AC_PROG_RANLIB' gbx/Makefile.am:5: to `configure.ac' and run `autoconf' again. gbx/Makefile.am:6: Libtool library used but `LIBTOOL' is undefined gbx/Makefile.am:6: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' gbx/Makefile.am:6: to `configure.ac' and run `aclocal' and `autoconf' again. gbx/Makefile.am:6: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure gbx/Makefile.am:6: its definition is in aclocal's search path. lib/compress/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/compress/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/compress/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/compress/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/compress/Makefile.am:4: its definition is in aclocal's search path. lib/db/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/db/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/db/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/db/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/db/Makefile.am:4: its definition is in aclocal's search path. lib/debug/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/debug/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/debug/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/debug/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/debug/Makefile.am:4: its definition is in aclocal's search path. lib/draw/Makefile.am:3: Libtool library used but `LIBTOOL' is undefined lib/draw/Makefile.am:3: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/draw/Makefile.am:3: to `configure.ac' and run `aclocal' and `autoconf' again. lib/draw/Makefile.am:3: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/draw/Makefile.am:3: its definition is in aclocal's search path. lib/eval/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/eval/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/eval/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/eval/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/eval/Makefile.am:4: its definition is in aclocal's search path. lib/gui/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/gui/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/gui/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/gui/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/gui/Makefile.am:4: its definition is in aclocal's search path. lib/image.effect/Makefile.am:5: Libtool library used but `LIBTOOL' is undefined lib/image.effect/Makefile.am:5: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/image.effect/Makefile.am:5: to `configure.ac' and run `aclocal' and `autoconf' again. lib/image.effect/Makefile.am:5: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/image.effect/Makefile.am:5: its definition is in aclocal's search path. lib/image/Makefile.am:5: Libtool library used but `LIBTOOL' is undefined lib/image/Makefile.am:5: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/image/Makefile.am:5: to `configure.ac' and run `aclocal' and `autoconf' again. lib/image/Makefile.am:5: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/image/Makefile.am:5: its definition is in aclocal's search path. lib/option/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/option/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/option/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/option/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/option/Makefile.am:4: its definition is in aclocal's search path. lib/signal/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/signal/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/signal/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/signal/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/signal/Makefile.am:4: its definition is in aclocal's search path. lib/vb/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined lib/vb/Makefile.am:4: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' lib/vb/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' again. lib/vb/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure lib/vb/Makefile.am:4: its definition is in aclocal's search path. autoreconf: automake failed with exit status: 1 Is it possibile to compile gambas3 without upgrading all the OS? Some hints? Thanks you all. Stafano From gambas at ...1... Thu Oct 14 03:40:48 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Thu, 14 Oct 2010 03:40:48 +0200 Subject: [Gambas-user] compiling Gambas3 on slack 12.2 In-Reply-To: <201010140314.47956.rospolosco@...152...> References: <201010140314.47956.rospolosco@...152...> Message-ID: <201010140340.48275.gambas@...1...> > Yes, I know. I should upgrade, but I'm lazy but > my old slack 12.2 is perfect. > > Now I want to try Gambas3. So I downloades the svn version and > ./reconf-all. I had this problems: > > stefano at ...1536...:~/trunk$ ./reconf-all > libtoolize: unrecognized option `--nonrecursive' > Try `libtoolize --help' for more information. > autoreconf: Entering directory `.' > autoreconf: configure.ac: not using Gettext > autoreconf: running: aclocal > /usr/share/aclocal/imlib.m4:9: warning: underquoted definition of > AM_PATH_IMLIB > /usr/share/aclocal/imlib.m4:9: run info '(automake)Extending aclocal' > /usr/share/aclocal/imlib.m4:9: or see > http://sources.redhat.com/automake/automake.html#Extending-aclocal > autoreconf: configure.ac: tracing > autoreconf: configure.ac: adding subdirectory main to autoreconf > autoreconf: Entering directory `main' > autoreconf: running: aclocal -I m4 --install > /usr/share/aclocal/imlib.m4:9: warning: underquoted definition of > AM_PATH_IMLIB > /usr/share/aclocal/imlib.m4:9: run info '(automake)Extending aclocal' > /usr/share/aclocal/imlib.m4:9: or see > http://sources.redhat.com/automake/automake.html#Extending-aclocal > autoreconf: configure.ac: not using Libtool > autoreconf: running: /usr/bin/autoconf > autoreconf: running: /usr/bin/autoheader > autoreconf: running: automake --add-missing --copy --no-force > gbx/Makefile.am:5: library used but `RANLIB' is undefined > gbx/Makefile.am:5: The usual way to define `RANLIB' is to add > `AC_PROG_RANLIB' > gbx/Makefile.am:5: to `configure.ac' and run `autoconf' again. > gbx/Makefile.am:6: Libtool library used but `LIBTOOL' is undefined > gbx/Makefile.am:6: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > gbx/Makefile.am:6: to `configure.ac' and run `aclocal' and `autoconf' > again. gbx/Makefile.am:6: If `AC_PROG_LIBTOOL' is in `configure.ac', > make sure gbx/Makefile.am:6: its definition is in aclocal's search path. > lib/compress/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/compress/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/compress/Makefile.am:4: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/compress/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', > make sure > lib/compress/Makefile.am:4: its definition is in aclocal's search path. > lib/db/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/db/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/db/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' > again. > lib/db/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure lib/db/Makefile.am:4: its definition is in aclocal's search path. > lib/debug/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/debug/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/debug/Makefile.am:4: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/debug/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure > lib/debug/Makefile.am:4: its definition is in aclocal's search path. > lib/draw/Makefile.am:3: Libtool library used but `LIBTOOL' is undefined > lib/draw/Makefile.am:3: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/draw/Makefile.am:3: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/draw/Makefile.am:3: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure lib/draw/Makefile.am:3: its definition is in aclocal's search path. > lib/eval/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/eval/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/eval/Makefile.am:4: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/eval/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure lib/eval/Makefile.am:4: its definition is in aclocal's search path. > lib/gui/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/gui/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/gui/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' > again. > lib/gui/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure lib/gui/Makefile.am:4: its definition is in aclocal's search path. > lib/image.effect/Makefile.am:5: Libtool library used but `LIBTOOL' is > undefined > lib/image.effect/Makefile.am:5: The usual way to define `LIBTOOL' is to > add `AC_PROG_LIBTOOL' > lib/image.effect/Makefile.am:5: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/image.effect/Makefile.am:5: If `AC_PROG_LIBTOOL' is in > `configure.ac', make sure > lib/image.effect/Makefile.am:5: its definition is in aclocal's search > path. lib/image/Makefile.am:5: Libtool library used but `LIBTOOL' is > undefined lib/image/Makefile.am:5: The usual way to define `LIBTOOL' is > to add `AC_PROG_LIBTOOL' > lib/image/Makefile.am:5: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/image/Makefile.am:5: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure > lib/image/Makefile.am:5: its definition is in aclocal's search path. > lib/option/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/option/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/option/Makefile.am:4: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/option/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure > lib/option/Makefile.am:4: its definition is in aclocal's search path. > lib/signal/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/signal/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/signal/Makefile.am:4: to `configure.ac' and run `aclocal' and > `autoconf' again. > lib/signal/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure > lib/signal/Makefile.am:4: its definition is in aclocal's search path. > lib/vb/Makefile.am:4: Libtool library used but `LIBTOOL' is undefined > lib/vb/Makefile.am:4: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' > lib/vb/Makefile.am:4: to `configure.ac' and run `aclocal' and `autoconf' > again. > lib/vb/Makefile.am:4: If `AC_PROG_LIBTOOL' is in `configure.ac', make > sure lib/vb/Makefile.am:4: its definition is in aclocal's search path. > autoreconf: automake failed with exit status: 1 > > Is it possibile to compile gambas3 without upgrading all the OS? > Some hints? > > Thanks you all. > > Stafano > You should just have to upgrade the GNU autotools and libtool to a recent version. Regards, -- Beno?t Minisini From kevinfishburne at ...1887... Thu Oct 14 04:47:29 2010 From: kevinfishburne at ...1887... (Kevin Fishburne) Date: Wed, 13 Oct 2010 22:47:29 -0400 Subject: [Gambas-user] someshort="xy" returns "Wanted short, got string instead" In-Reply-To: <201010130048.42640.gambas@...1...> References: <4CB3E528.8090502@...1887...> <201010130042.03824.gambas@...1...> <201010130048.42640.gambas@...1...> Message-ID: <4CB66F41.7080200@...1887...> On 10/12/2010 06:48 PM, Beno?t Minisini wrote: >> Second : on a mailing-list, you never answer a thread with a mail that has >> no relation with it. So please post a new thread each time you start to >> talk about a new subject. > Less rudely, I mean that 'someshort="xy"...' was not a good title, and made > the all thread being lost in the mailing-list archives! No worries, but in my defense I was continuing the thread using its original subject and still discussing the general issue of assigning binary data in a string to a variable of a different datatype. The mention of Nabble and problems with the mailing list was an aside to explain why duplicate posts may have arisen from me reposting my message directly to the mailing list. Anyway, I think we're on the same page now, so I'm going to go compile gb3 and see what's what. ;) -- Kevin Fishburne Eight Virtues www: http://sales.eightvirtues.com e-mail: sales at ...1887... phone: (770) 853-6271 From charles at ...1784... Thu Oct 14 07:53:34 2010 From: charles at ...1784... (charlesg) Date: Wed, 13 Oct 2010 22:53:34 -0700 (PDT) Subject: [Gambas-user] [ASK] How to sort Gridview? In-Reply-To: <29958078.post@...1379...> References: <29958078.post@...1379...> Message-ID: <29959457.post@...1379...> Use columnclick event, clear gridview, sort data, redisplay. Use data event if you have thousands of data. > PUBLIC SUB Form_Open() > GridView1.columns.count = 2 > END > > PUBLIC SUB GridView1_ColumnClick(colm AS Integer) > PRINT Colm > END > rportnoy wrote: > > Hey bro, how could I order by any column by clicking on its > ColumnHeader?.:confused: > -- View this message in context: http://old.nabble.com/-ASK--How-to-sort-Gridview--tp29958078p29959457.html Sent from the gambas-user mailing list archive at Nabble.com. From demosthenesk at ...626... Thu Oct 14 12:04:02 2010 From: demosthenesk at ...626... (user) Date: Thu, 14 Oct 2010 13:04:02 +0300 Subject: [Gambas-user] Gambas and Mobiles, Symbian Message-ID: <1287050642.5820.1.camel@...2494...> Hi, i wander if it is possible to run Gambas projects to mobiles with symbian S60 like nokia mobiles? From rospolosco at ...152... Thu Oct 14 12:22:46 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Thu, 14 Oct 2010 12:22:46 +0200 Subject: [Gambas-user] compiling Gambas3 on slack 12.2 In-Reply-To: <201010140340.48275.gambas@...1...> References: <201010140314.47956.rospolosco@...152...> <201010140340.48275.gambas@...1...> Message-ID: <201010141222.47403.rospolosco@...152...> Il gioved? 14 ottobre 2010 03:40:48 Beno?t Minisini ha scritto: > You should just have to upgrade the GNU autotools and libtool to a recent > version. > > Regards, > > -- > Beno?t Minisini Thanks Benoit. I upgraded autoconf, automake, libtool. Then ./reconf-all, ./configure and make. I get this following error at the end of compiling: _error.o gbx3-gbx_c_gambas.o gbx3-gbx_c_file.o gbx3-gbx_c_application.o gbx3-gbx_c_array.o gbx3-gbx_c_process.o gbx3-gbx_c_subcollection.o gbx3-gbx_c_string.o gbx3-gbx_component.o gbx3-gbx_extern.o gbx3-gbx_c_enum.o gbx3-gbx_c_timer.o gbx3-gbx_struct.o -L/usr/./lib/ libgbx.a -lm -ldl -lpthread /usr/lib/libffi.so gbx3-gbx_extern.o: In function `EXTERN_make_callback': /home/stefano/trunk/main/gbx/gbx_extern.c:640: undefined reference to `ffi_closure_alloc' /home/stefano/trunk/main/gbx/gbx_extern.c:642: undefined reference to `ffi_prep_closure_loc' collect2: ld returned 1 exit status make[4]: *** [gbx3] Error 1 make[4]: Leaving directory `/home/stefano/trunk/main/gbx' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/stefano/trunk/main' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/stefano/trunk/main' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/stefano/trunk' make: *** [all] Error 2 On my sistem libffi.so is part of gcc-java package. I wouldn't touch all gcc stuff. So, any workaround for that error? Thanks, Stefano From jussi.lahtinen at ...626... Thu Oct 14 16:12:02 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Thu, 14 Oct 2010 17:12:02 +0300 Subject: [Gambas-user] Gambas and Mobiles, Symbian In-Reply-To: <1287050642.5820.1.camel@...2494...> References: <1287050642.5820.1.camel@...2494...> Message-ID: http://gambasdoc.org/help/doc/distro?en&view Jussi On Thu, Oct 14, 2010 at 13:04, user wrote: > Hi, > > i wander if it is possible to run Gambas projects to mobiles with > symbian S60 like nokia mobiles? > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Thu Oct 14 16:30:54 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Thu, 14 Oct 2010 16:30:54 +0200 Subject: [Gambas-user] Gambas and Mobiles, Symbian In-Reply-To: <1287050642.5820.1.camel@...2494...> References: <1287050642.5820.1.camel@...2494...> Message-ID: <201010141630.54513.gambas@...1...> > Hi, > > i wander if it is possible to run Gambas projects to mobiles with > symbian S60 like nokia mobiles? > > First it depends on the architecture, i.e. the CPU. Only x86, x86_64 and ARM are supported. Then you must run Linux or FreeBSD. And if you want GUI, you need X11. Regards, -- Beno?t Minisini From demosthenesk at ...626... Thu Oct 14 16:37:33 2010 From: demosthenesk at ...626... (user) Date: Thu, 14 Oct 2010 17:37:33 +0300 Subject: [Gambas-user] Gambas and Mobiles, Symbian In-Reply-To: <201010141630.54513.gambas@...1...> References: <1287050642.5820.1.camel@...2494...> <201010141630.54513.gambas@...1...> Message-ID: <1287067053.14370.4.camel@...2493...> ok, we post almost together. in my previous email i wrote a question for the architecture. Thanks Beno?t. On Thu, 2010-10-14 at 16:30 +0200, Beno?t Minisini wrote: > > Hi, > > > > i wander if it is possible to run Gambas projects to mobiles with > > symbian S60 like nokia mobiles? > > > > > > First it depends on the architecture, i.e. the CPU. Only x86, x86_64 and ARM > are supported. > > Then you must run Linux or FreeBSD. > > And if you want GUI, you need X11. > > Regards, > From demosthenesk at ...626... Thu Oct 14 16:35:46 2010 From: demosthenesk at ...626... (user) Date: Thu, 14 Oct 2010 17:35:46 +0300 Subject: [Gambas-user] Gambas and Mobiles, Symbian In-Reply-To: References: <1287050642.5820.1.camel@...2494...> Message-ID: <1287066946.14370.2.camel@...2493...> ok this is the current status. is there any plans for the future for mobile platforms? or it is impossible due to project architecture? My all question/wish is if i could write apps for mobiles with a Basic language. And why not Gambas? On Thu, 2010-10-14 at 17:12 +0300, Jussi Lahtinen wrote: > http://gambasdoc.org/help/doc/distro?en&view > > Jussi > > > On Thu, Oct 14, 2010 at 13:04, user wrote: > > > Hi, > > > > i wander if it is possible to run Gambas projects to mobiles with > > symbian S60 like nokia mobiles? > > > > > > > > ------------------------------------------------------------------------------ > > Beautiful is writing same markup. Internet Explorer 9 supports > > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > > Spend less time writing and rewriting code and more time creating great > > experiences on the web. Be a part of the beta today. > > http://p.sf.net/sfu/beautyoftheweb > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From jussi.lahtinen at ...626... Thu Oct 14 18:55:59 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Thu, 14 Oct 2010 19:55:59 +0300 Subject: [Gambas-user] Under construction or bug? Message-ID: Help line feature seems not to work correctly with recent revision. If I type: Dim test as someclass test.somevariabl... I always get "No help found". Gambas 3 rev 3265 @Ubuntu 10.04 64bit Jussi From piramix at ...178... Thu Oct 14 20:29:36 2010 From: piramix at ...178... (piramix at ...178...) Date: Thu, 14 Oct 2010 14:29:36 -0400 Subject: [Gambas-user] Question about some simple code enterin' data Message-ID: <8CD39E4E38BAE5F-10D4-8828@...2497...> Hi everyone. I need to enter numeric data into a previously formatted text field. The format is 99-9999999999-9, where 9s are any number. I need to display just the scores so the operator just enters the numbers. Please help!! Thanks in advance. Pablo. From tobiasboe1 at ...20... Thu Oct 14 20:51:16 2010 From: tobiasboe1 at ...20... (tobias) Date: Thu, 14 Oct 2010 20:51:16 +0200 Subject: [Gambas-user] Question about some simple code enterin' data In-Reply-To: <8CD39E4E38BAE5F-10D4-8828@...2497...> References: <8CD39E4E38BAE5F-10D4-8828@...2497...> Message-ID: <4CB75124.2070100@...20...> piramix at ...178... schrieb: > Hi everyone. > I need to enter numeric data into a previously formatted text field. > The format is 99-9999999999-9, where 9s are any number. > I need to display just the scores so the operator just enters the > numbers. > Please help!! > Thanks in advance. > Pablo. > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user hi, i think you want make one single textbox to display some sections of numbers e.g. like a serial numbern, with some - between the sections?? or what do you mean? if this is the case, you may implement a TextBox_KeyPress() event to handle each keypress and if one section is complete, insert your separator (e.g. "-"), this way you also may prevent the insertion of chars which shouldn't be part of the pattern. regards, tobi From demosthenesk at ...626... Thu Oct 14 21:29:42 2010 From: demosthenesk at ...626... (user) Date: Thu, 14 Oct 2010 22:29:42 +0300 Subject: [Gambas-user] Question about some simple code enterin' data In-Reply-To: <4CB75124.2070100@...20...> References: <8CD39E4E38BAE5F-10D4-8828@...2497...> <4CB75124.2070100@...20...> Message-ID: <1287084582.8054.5.camel@...2494...> or you can write a code in TextBox_Change() method. So if user copy paste a serial number like text to accept it. I think this solution contains also the keypress case. For start you can replace digits with spaces. Like TextBox.text = " - - " Then in every change to replace each space with a digit maybe with a Replace$ function. But when you reach the - character preserve it in string. You want something like that? On Thu, 2010-10-14 at 20:51 +0200, tobias wrote: > piramix at ...178... schrieb: > > Hi everyone. > > I need to enter numeric data into a previously formatted text field. > > The format is 99-9999999999-9, where 9s are any number. > > I need to display just the scores so the operator just enters the > > numbers. > > Please help!! > > Thanks in advance. > > Pablo. > > > > ------------------------------------------------------------------------------ > > Beautiful is writing same markup. Internet Explorer 9 supports > > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > > Spend less time writing and rewriting code and more time creating great > > experiences on the web. Be a part of the beta today. > > http://p.sf.net/sfu/beautyoftheweb > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > hi, > i think you want make one single textbox to display some sections of > numbers e.g. like a serial numbern, with some - between the sections?? > or what do you mean? > if this is the case, you may implement a TextBox_KeyPress() event to > handle each keypress and if one section is complete, insert your > separator (e.g. "-"), this way you also may prevent the insertion of > chars which shouldn't be part of the pattern. > > regards, > tobi > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From piramix at ...178... Thu Oct 14 21:44:26 2010 From: piramix at ...178... (piramix at ...178...) Date: Thu, 14 Oct 2010 15:44:26 -0400 Subject: [Gambas-user] Question about some simple code enterin' data In-Reply-To: <4CB75124.2070100@...20...> References: <8CD39E4E38BAE5F-10D4-8828@...2497...> <4CB75124.2070100@...20...> Message-ID: <8CD39EF56C17F5A-10D4-8D7F@...2497...> Thanks Tobi for your quick reply. With TextBox_KeyPress() I manage the insertion of numbers. But I need to display both scores before the data entry. The example you gave me with the serial numbers is exactly what I need. Let's say -as another posibility- that I'd like to enter a date in a format "mm/dd/yyyy"... I need to show both slashes before entering data and, while typing numbers, I need to move between characters automatically. I'd like some code as an example just to figure out howto manage it. Hope to be clear with my explanation. Thanks again. Wait 4Ur answer. Pablo. -----Original Message----- From: tobias To: mailing list for gambas users Sent: Thu, Oct 14, 2010 3:51 pm Subject: Re: [Gambas-user] Question about some simple code enterin' data piramix at ...178... schrieb: > Hi everyone. > I need to enter numeric data into a previously formatted text field. > The format is 99-9999999999-9, where 9s are any number. > I need to display just the scores so the operator just enters the > numbers. > Please help!! > Thanks in advance. > Pablo. > > ------------------------------------------------------------------------- ----- > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user hi, i think you want make one single textbox to display some sections of numbers e.g. like a serial numbern, with some - between the sections?? or what do you mean? if this is the case, you may implement a TextBox_KeyPress() event to handle each keypress and if one section is complete, insert your separator (e.g. "-"), this way you also may prevent the insertion of chars which shouldn't be part of the pattern. regards, tobi ------------------------------------------------------------------------- ----- Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From jussi.lahtinen at ...626... Thu Oct 14 23:20:01 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Fri, 15 Oct 2010 00:20:01 +0300 Subject: [Gambas-user] Bug with Dialog Message-ID: Hi! Way to reproduce the problem: Code: Dialog.SaveFile() Click Cancel, execution hangs. Bug applies only to Qt4. Gambas 3 rev 3265 @ Ubuntu 10.04 64bit Jussi From leandrosansilva at ...626... Fri Oct 15 05:20:01 2010 From: leandrosansilva at ...626... (Leandro Santiago) Date: Fri, 15 Oct 2010 00:20:01 -0300 Subject: [Gambas-user] Gambas and Mobiles, Symbian In-Reply-To: <1287067053.14370.4.camel@...2493...> References: <1287050642.5820.1.camel@...2494...> <201010141630.54513.gambas@...1...> <1287067053.14370.4.camel@...2493...> Message-ID: There are some tookits which can be used in mobile devices (mainly linux-based), as Elementary (based on efl[1]), which works in maemo, for example. I think a binding from efl (written in C) to gambas can possibly gambas for mobile. Elementary is clean, light and also runs on top of x11 (software, xrender and opengl-es) [1] http://enlightenment.org 2010/10/14 user : > ok, we post almost together. > > in my previous email i wrote a question for the architecture. > > Thanks Beno?t. > > On Thu, 2010-10-14 at 16:30 +0200, Beno?t Minisini wrote: >> > Hi, >> > >> > i wander if it is possible to run Gambas projects to mobiles with >> > symbian S60 like nokia mobiles? >> > >> > >> >> First it depends on the architecture, i.e. the CPU. Only x86, x86_64 and ARM >> are supported. >> >> Then you must run Linux or FreeBSD. >> >> And if you want GUI, you need X11. >> >> Regards, >> > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ?ECMAScript5, and DOM L2 & L3. > Spend less time writing and ?rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From demosthenesk at ...626... Fri Oct 15 11:00:27 2010 From: demosthenesk at ...626... (user) Date: Fri, 15 Oct 2010 12:00:27 +0300 Subject: [Gambas-user] Renaming a form minor bug Message-ID: <1287133227.24298.3.camel@...2493...> Hi all, i have a form named, Fhistory if i try to rename it to FHistory the ide complains about existing name, the renaming process is not case sensitive. I need to rename form as different name ex. Fhistory2 and then to FHistory i use Gambas 2.21, Ubuntu 64bit 10.04 From gambas at ...1... Fri Oct 15 11:17:36 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 15 Oct 2010 11:17:36 +0200 Subject: [Gambas-user] Gambas and Mobiles, Symbian In-Reply-To: References: <1287050642.5820.1.camel@...2494...> <1287067053.14370.4.camel@...2493...> Message-ID: <201010151117.36574.gambas@...1...> > There are some tookits which can be used in mobile devices (mainly > linux-based), as Elementary (based on efl[1]), which works in maemo, > for example. I think a binding from efl (written in C) to gambas can > possibly gambas for mobile. > > Elementary is clean, light and also runs on top of x11 (software, > xrender and opengl-es) > > [1] http://enlightenment.org > I was thinking about enlightenment libraries too, especially now they are stable. But let's release Gambas 3 first... -- Beno?t Minisini From gambas.fr at ...626... Fri Oct 15 11:19:37 2010 From: gambas.fr at ...626... (Fabien Bodard) Date: Fri, 15 Oct 2010 11:19:37 +0200 Subject: [Gambas-user] Under construction or bug? In-Reply-To: References: Message-ID: dim is local .... private test as someclass test.somevariabl... 2010/10/14 Jussi Lahtinen : > Help line feature seems not to work correctly with recent revision. > If I type: > Dim test as someclass > > test.somevariabl... ?I always get "No help found". > > Gambas 3 rev 3265 @Ubuntu 10.04 64bit > > Jussi > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ?ECMAScript5, and DOM L2 & L3. > Spend less time writing and ?rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Fabien Bodard From demosthenesk at ...626... Fri Oct 15 13:26:13 2010 From: demosthenesk at ...626... (user) Date: Fri, 15 Oct 2010 14:26:13 +0300 Subject: [Gambas-user] Split a line with double spaces Message-ID: <1287141973.28225.9.camel@...2493...> Hi to all, i have a string which contains two spaces in a row. i use split function to split this string in 2 parts with separator the 2 spaces. sOneLine="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu Virus found Win32/Heur" sSplitLine = Split(sOneLine, (" ") Normally i want to have sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" sSplitLine[1]="Virus found Win32/Heur" but split uses the 2 spaces as one so i get sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" sSplitLine[1]="Virus" sSplitLine[2]="found sSplitLine[3]="Win32/Heur" What must i do to get sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" sSplitLine[1]="Virus found Win32/Heur" i have already tried to use some ascii code for space as sSplitLine = Split(sOneLine, ((Chr(32) & Chr(32)))) but no results Any help? From tobiasboe1 at ...20... Fri Oct 15 14:26:23 2010 From: tobiasboe1 at ...20... (tobias) Date: Fri, 15 Oct 2010 14:26:23 +0200 Subject: [Gambas-user] Question about some simple code enterin' data In-Reply-To: <8CD39EF56C17F5A-10D4-8D7F@...2497...> References: <8CD39E4E38BAE5F-10D4-8828@...2497...> <4CB75124.2070100@...20...> <8CD39EF56C17F5A-10D4-8D7F@...2497...> Message-ID: <4CB8486F.3070809@...20...> piramix at ...178... schrieb: > Thanks Tobi for your quick reply. > With TextBox_KeyPress() I manage the insertion of numbers. But I need > to display both scores before the data entry. > The example you gave me with the serial numbers is exactly what I need. > Let's say -as another posibility- that I'd like to enter a date in a > format "mm/dd/yyyy"... I need to show both slashes before entering data > and, while typing numbers, I need to move between characters > automatically. > I'd like some code as an example just to figure out howto manage it. > Hope to be clear with my explanation. > Thanks again. > Wait 4Ur answer. > Pablo. > > > > -----Original Message----- > From: tobias > To: mailing list for gambas users > Sent: Thu, Oct 14, 2010 3:51 pm > Subject: Re: [Gambas-user] Question about some simple code enterin' data > > > piramix at ...178... schrieb: >> Hi everyone. >> I need to enter numeric data into a previously formatted text field. >> The format is 99-9999999999-9, where 9s are any number. >> I need to display just the scores so the operator just enters the >> numbers. >> Please help!! >> Thanks in advance. >> Pablo. >> >> > ------------------------------------------------------------------------- > ----- >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. >> Spend less time writing and rewriting code and more time creating > great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > hi, > i think you want make one single textbox to display some sections of > numbers e.g. like a serial numbern, with some - between the sections?? > or what do you mean? > if this is the case, you may implement a TextBox_KeyPress() event to > handle each keypress and if one section is complete, insert your > separator (e.g. "-"), this way you also may prevent the insertion of > chars which shouldn't be part of the pattern. > > regards, > tobi > > ------------------------------------------------------------------------- > ----- > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user hi, ok, my english is not as good as it should be^^ (i don't know what you mean with "I need to move between characters automatically." and "But I need to display both scores before the data entry.") but if i understood, you want to have the slashes in the clear textbox and if one section is complete automatically jump behind the slash? From jussi.lahtinen at ...626... Fri Oct 15 15:00:13 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Fri, 15 Oct 2010 16:00:13 +0300 Subject: [Gambas-user] Under construction or bug? In-Reply-To: References: Message-ID: I don't understand what you are saying. Do you mean that help lines are not for locally declared objects? But this doesn't work either: Private test As someclass test.somevariabl... Jussi On Fri, Oct 15, 2010 at 12:19, Fabien Bodard wrote: > dim is local .... > > private test as someclass > > test.somevariabl... > > 2010/10/14 Jussi Lahtinen : > > Help line feature seems not to work correctly with recent revision. > > If I type: > > Dim test as someclass > > > > test.somevariabl... I always get "No help found". > > > > Gambas 3 rev 3265 @Ubuntu 10.04 64bit > > > > Jussi > > > ------------------------------------------------------------------------------ > > Beautiful is writing same markup. Internet Explorer 9 supports > > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > > Spend less time writing and rewriting code and more time creating great > > experiences on the web. Be a part of the beta today. > > http://p.sf.net/sfu/beautyoftheweb > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > -- > Fabien Bodard > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From rospolosco at ...152... Fri Oct 15 15:18:00 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 15 Oct 2010 15:18:00 +0200 Subject: [Gambas-user] Split a line with double spaces In-Reply-To: <1287141973.28225.9.camel@...2493...> References: <1287141973.28225.9.camel@...2493...> Message-ID: <201010151518.00835.rospolosco@...152...> Il venerd? 15 ottobre 2010 13:26:13 user ha scritto: > Hi to all, > > i have a string which contains two spaces in a row. > > i use split function to split this string in 2 parts with separator the > 2 spaces. > > sOneLine="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu > Virus found Win32/Heur" > > sSplitLine = Split(sOneLine, (" ") > > Normally i want to have > > sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" > sSplitLine[1]="Virus found Win32/Heur" > > but split uses the 2 spaces as one so i get > > sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" > sSplitLine[1]="Virus" > sSplitLine[2]="found > sSplitLine[3]="Win32/Heur" > > What must i do to get > > sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" > sSplitLine[1]="Virus found Win32/Heur" > > i have already tried to use some ascii code for space as > sSplitLine = Split(sOneLine, ((Chr(32) & Chr(32)))) > > but no results > Any help? > Split uses a single separator. You have to replace that double space " " with a single uniq separator. For example a new line. Here's: DIM sOneline AS String DIM arsLines AS String[] sOneline = "/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu Virus found Win32/Heur" sOneline = Replace$(sOneline, " ", "\n") arsLines = Split(sOneline, "\n") PRINT arsLines[0] PRINT arsLines[1] Ciao > > > --------------------------------------------------------------------------- >--- Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From demosthenesk at ...626... Fri Oct 15 15:35:02 2010 From: demosthenesk at ...626... (user) Date: Fri, 15 Oct 2010 16:35:02 +0300 Subject: [Gambas-user] Split a line with double spaces In-Reply-To: <201010151518.00835.rospolosco@...152...> References: <1287141973.28225.9.camel@...2493...> <201010151518.00835.rospolosco@...152...> Message-ID: <1287149702.15506.0.camel@...2494...> nice idea... Thanks. On Fri, 2010-10-15 at 15:18 +0200, Stefano Palmeri wrote: > Il venerd? 15 ottobre 2010 13:26:13 user ha scritto: > > Hi to all, > > > > i have a string which contains two spaces in a row. > > > > i use split function to split this string in 2 parts with separator the > > 2 spaces. > > > > sOneLine="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu > > Virus found Win32/Heur" > > > > sSplitLine = Split(sOneLine, (" ") > > > > Normally i want to have > > > > sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" > > sSplitLine[1]="Virus found Win32/Heur" > > > > but split uses the 2 spaces as one so i get > > > > sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" > > sSplitLine[1]="Virus" > > sSplitLine[2]="found > > sSplitLine[3]="Win32/Heur" > > > > What must i do to get > > > > sSplitLine[0]="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu" > > sSplitLine[1]="Virus found Win32/Heur" > > > > i have already tried to use some ascii code for space as > > sSplitLine = Split(sOneLine, ((Chr(32) & Chr(32)))) > > > > but no results > > Any help? > > > > Split uses a single separator. You have to replace that double space " " > with a single uniq separator. For example a new line. Here's: > > DIM sOneline AS String > DIM arsLines AS String[] > > sOneline = "/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu Virus > found Win32/Heur" > sOneline = Replace$(sOneline, " ", "\n") > arsLines = Split(sOneline, "\n") > > PRINT arsLines[0] > PRINT arsLines[1] > > Ciao > > > > > > > > > > > > > --------------------------------------------------------------------------- > >--- Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From piramix at ...178... Fri Oct 15 15:59:22 2010 From: piramix at ...178... (piramix at ...178...) Date: Fri, 15 Oct 2010 09:59:22 -0400 Subject: [Gambas-user] Question about some simple code enterin' data In-Reply-To: <4CB8486F.3070809@...20...> References: <8CD39E4E38BAE5F-10D4-8828@...2497...> <4CB75124.2070100@...20...><8CD39EF56C17F5A-10D4-8D7F@...2497...> <4CB8486F.3070809@...20...> Message-ID: <8CD3A884D0C8F84-1378-C90F@...2498...> EXACTLY EXACTO That's what I need. The function is called input mask. I could not find it in Gambas. -----Original Message----- From: tobias To: mailing list for gambas users Sent: Fri, Oct 15, 2010 9:26 am Subject: Re: [Gambas-user] Question about some simple code enterin' data piramix at ...178... schrieb: > Thanks Tobi for your quick reply. > With TextBox_KeyPress() I manage the insertion of numbers. But I need > to display both scores before the data entry. > The example you gave me with the serial numbers is exactly what I need. > Let's say -as another posibility- that I'd like to enter a date in a > format "mm/dd/yyyy"... I need to show both slashes before entering data > and, while typing numbers, I need to move between characters > automatically. > I'd like some code as an example just to figure out howto manage it. > Hope to be clear with my explanation. > Thanks again. > Wait 4Ur answer. > Pablo. > > > > -----Original Message----- > From: tobias > To: mailing list for gambas users > Sent: Thu, Oct 14, 2010 3:51 pm > Subject: Re: [Gambas-user] Question about some simple code enterin' data > > > piramix at ...178... schrieb: >> Hi everyone. >> I need to enter numeric data into a previously formatted text field. >> The format is 99-9999999999-9, where 9s are any number. >> I need to display just the scores so the operator just enters the >> numbers. >> Please help!! >> Thanks in advance. >> Pablo. >> >> > ------------------------------------------------------------------------- > ----- >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. >> Spend less time writing and rewriting code and more time creating > great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > hi, > i think you want make one single textbox to display some sections of > numbers e.g. like a serial numbern, with some - between the sections?? > or what do you mean? > if this is the case, you may implement a TextBox_KeyPress() event to > handle each keypress and if one section is complete, insert your > separator (e.g. "-"), this way you also may prevent the insertion of > chars which shouldn't be part of the pattern. > > regards, > tobi > > ------------------------------------------------------------------------- > ----- > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- ----- > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user hi, ok, my english is not as good as it should be^^ (i don't know what you mean with "I need to move between characters automatically." and "But I need to display both scores before the data entry.") but if i understood, you want to have the slashes in the clear textbox and if one section is complete automatically jump behind the slash? ------------------------------------------------------------------------- ----- Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly Flex(R) Builder(TM)) enable the development of rich applications that run across multiple browsers and platforms. Download your free trials today! http://p.sf.net/sfu/adobe-dev2dev _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From tobiasboe1 at ...20... Fri Oct 15 16:32:44 2010 From: tobiasboe1 at ...20... (tobias) Date: Fri, 15 Oct 2010 16:32:44 +0200 Subject: [Gambas-user] Question about some simple code enterin' data In-Reply-To: <8CD3A884D0C8F84-1378-C90F@...2498...> References: <8CD39E4E38BAE5F-10D4-8828@...2497...> <4CB75124.2070100@...20...><8CD39EF56C17F5A-10D4-8D7F@...2497...> <4CB8486F.3070809@...20...> <8CD3A884D0C8F84-1378-C90F@...2498...> Message-ID: <4CB8660C.9020103@...20...> piramix at ...178... schrieb: > EXACTLY > EXACTO > That's what I need. > The function is called input mask. I could not find it in Gambas. > > > > -----Original Message----- > From: tobias > To: mailing list for gambas users > Sent: Fri, Oct 15, 2010 9:26 am > Subject: Re: [Gambas-user] Question about some simple code enterin' data > > > piramix at ...178... schrieb: >> Thanks Tobi for your quick reply. >> With TextBox_KeyPress() I manage the insertion of numbers. But I need >> to display both scores before the data entry. >> The example you gave me with the serial numbers is exactly what I > need. >> Let's say -as another posibility- that I'd like to enter a date in a >> format "mm/dd/yyyy"... I need to show both slashes before entering > data >> and, while typing numbers, I need to move between characters >> automatically. >> I'd like some code as an example just to figure out howto manage it. >> Hope to be clear with my explanation. >> Thanks again. >> Wait 4Ur answer. >> Pablo. >> >> >> >> -----Original Message----- >> From: tobias >> To: mailing list for gambas users >> Sent: Thu, Oct 14, 2010 3:51 pm >> Subject: Re: [Gambas-user] Question about some simple code enterin' > data >> >> piramix at ...178... schrieb: >>> Hi everyone. >>> I need to enter numeric data into a previously formatted text field. >>> The format is 99-9999999999-9, where 9s are any number. >>> I need to display just the scores so the operator just enters the >>> numbers. >>> Please help!! >>> Thanks in advance. >>> Pablo. >>> >>> > ------------------------------------------------------------------------- > >> ----- >>> Beautiful is writing same markup. Internet Explorer 9 supports >>> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. >>> Spend less time writing and rewriting code and more time creating >> great >>> experiences on the web. Be a part of the beta today. >>> http://p.sf.net/sfu/beautyoftheweb >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >> hi, >> i think you want make one single textbox to display some sections of >> numbers e.g. like a serial numbern, with some - between the sections?? >> or what do you mean? >> if this is the case, you may implement a TextBox_KeyPress() event to >> handle each keypress and if one section is complete, insert your >> separator (e.g. "-"), this way you also may prevent the insertion of >> chars which shouldn't be part of the pattern. >> >> regards, >> tobi >> >> > ------------------------------------------------------------------------- > >> ----- >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. >> Spend less time writing and rewriting code and more time creating > great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> >> >> >> > ------------------------------------------------------------------------- > ----- >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. >> Spend less time writing and rewriting code and more time creating > great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > hi, > ok, my english is not as good as it should be^^ (i don't know what you > mean with "I need to move between characters > automatically." and "But I need > to display both scores before the data entry.") > > but if i understood, you want to have the slashes in the clear textbox > and if one section is complete automatically jump behind the slash? > > ------------------------------------------------------------------------- > ----- > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that > run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user well, during writing an example for you, i found that it is not as difficult as i thought it would be... you just have a mask, e.g. "__/__/____" and every keypress you search for the next "_" char and replace it with the key.code, the only thing you have to notice is that you have to take care of moving the textbox1.pos value for a better looking, which is done in my example too ;) but there are still some improvements neccessary: *copy, paste of a value *the end of the mask is reached *the backspace key! in case of a date: *check the input, e.g. days can't be > 31 regards, tobi -------------- next part -------------- A non-text attachment was scrubbed... Name: input_mask-0.0.1.tar.gz Type: application/x-gzip Size: 8138 bytes Desc: not available URL: From jussi.lahtinen at ...626... Fri Oct 15 17:01:42 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Fri, 15 Oct 2010 18:01:42 +0300 Subject: [Gambas-user] IDE crash with browse Message-ID: Hi! Way to reproduce the problem: 1. Open search window 2. type some word for search 3. click browse 4. press arrow key to right or left Reason: If gvwFind is not in focus, it has no current row, ie gvwFind.Row = -1. Crash when; hFind = $aBrowse[gvwFind.Row] @ Public Sub gvwFind_Select() Suggestion: Add following code to Sub gvwFind_Select. If gvwFind.Row = -1 Then gvwFind.Row = 0 ' Prevents crash. gvwFind.Column = 1 ' Makes browsing with arrow keys smoother. Endif Gambas 3 rev 3265 @Ubuntu 10.04 64bit Jussi From jussi.lahtinen at ...626... Fri Oct 15 18:26:51 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Fri, 15 Oct 2010 19:26:51 +0300 Subject: [Gambas-user] IDE crash with browse In-Reply-To: References: Message-ID: gvwFind.Column = 2 would be more convenient as search string can be found multiple times from same line. Jussi On Fri, Oct 15, 2010 at 18:01, Jussi Lahtinen wrote: > Hi! > Way to reproduce the problem: > 1. Open search window > 2. type some word for search > 3. click browse > 4. press arrow key to right or left > > Reason: > If gvwFind is not in focus, it has no current row, ie gvwFind.Row = -1. > Crash when; > hFind = $aBrowse[gvwFind.Row] > @ Public Sub gvwFind_Select() > > Suggestion: > Add following code to Sub gvwFind_Select. > > If gvwFind.Row = -1 Then > gvwFind.Row = 0 ' Prevents crash. > gvwFind.Column = 1 ' Makes browsing with arrow keys smoother. > Endif > > > Gambas 3 rev 3265 @Ubuntu 10.04 64bit > > Jussi > From demosthenesk at ...626... Fri Oct 15 18:28:31 2010 From: demosthenesk at ...626... (user) Date: Fri, 15 Oct 2010 19:28:31 +0300 Subject: [Gambas-user] GridView and ListView Selections Message-ID: <1287160111.811.3.camel@...2493...> Hi to all again, In a GridView we can unselect the selected rows as following grdResults.Rows.Unselect In a ListView control when i want to unselect how we can do it? i try to find something like lswResults.Items.Unselect but there is no Items (as there is Rows class for grd) class or something similar. From math.eber at ...221... Fri Oct 15 21:10:11 2010 From: math.eber at ...221... (Matti) Date: Fri, 15 Oct 2010 21:10:11 +0200 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <1287160111.811.3.camel@...2493...> References: <1287160111.811.3.camel@...2493...> Message-ID: <4CB8A713.2010700@...221...> >From the docs: .ListViewItem.Selected PROPERTY Selected AS Boolean Indicates if the item is selected I tried it (Gambas3) like this: ListView1.MoveFirst Do While ListView1.Item ListView1.Item.Selected = False ListView1.MoveNext Loop Probably, there are more elegant ways, but it works. Regards Matti Am 15.10.2010 18:28, schrieb user: > Hi to all again, > > In a GridView we can unselect the selected rows as following > > grdResults.Rows.Unselect > > In a ListView control when i want to unselect how we can do it? > > i try to find something like > > lswResults.Items.Unselect > > but there is no Items (as there is Rows class for grd) class or > something similar. > > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From demosthenesk at ...626... Fri Oct 15 21:22:35 2010 From: demosthenesk at ...626... (user) Date: Fri, 15 Oct 2010 22:22:35 +0300 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <4CB8A713.2010700@...221...> References: <1287160111.811.3.camel@...2493...> <4CB8A713.2010700@...221...> Message-ID: <1287170555.3084.0.camel@...2493...> Thanks i got it! On Fri, 2010-10-15 at 21:10 +0200, Matti wrote: > >From the docs: > .ListViewItem.Selected > PROPERTY Selected AS Boolean > Indicates if the item is selected > > I tried it (Gambas3) like this: > ListView1.MoveFirst > Do While ListView1.Item > ListView1.Item.Selected = False > ListView1.MoveNext > Loop > > Probably, there are more elegant ways, but it works. > > Regards > Matti > > > Am 15.10.2010 18:28, schrieb user: > > Hi to all again, > > > > In a GridView we can unselect the selected rows as following > > > > grdResults.Rows.Unselect > > > > In a ListView control when i want to unselect how we can do it? > > > > i try to find something like > > > > lswResults.Items.Unselect > > > > but there is no Items (as there is Rows class for grd) class or > > something similar. > > > > > > > > > > ------------------------------------------------------------------------------ > > Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From demosthenesk at ...626... Fri Oct 15 21:56:56 2010 From: demosthenesk at ...626... (user) Date: Fri, 15 Oct 2010 22:56:56 +0300 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <4CB8A713.2010700@...221...> References: <1287160111.811.3.camel@...2493...> <4CB8A713.2010700@...221...> Message-ID: <1287172616.4220.1.camel@...2493...> Hm, i think i found it.... ListView.SelectAll (gb.qt) Syntax ------------------------------ SUB SelectAll ( [ Selected AS Boolean ] ) ------------------------------ Selects or deselects all items in the view. * If Selected is TRUE, then all items are selected. This is the default value. * If Selected is FALSE, then all items are deselected. On Fri, 2010-10-15 at 21:10 +0200, Matti wrote: > >From the docs: > .ListViewItem.Selected > PROPERTY Selected AS Boolean > Indicates if the item is selected > > I tried it (Gambas3) like this: > ListView1.MoveFirst > Do While ListView1.Item > ListView1.Item.Selected = False > ListView1.MoveNext > Loop > > Probably, there are more elegant ways, but it works. > > Regards > Matti > > > Am 15.10.2010 18:28, schrieb user: > > Hi to all again, > > > > In a GridView we can unselect the selected rows as following > > > > grdResults.Rows.Unselect > > > > In a ListView control when i want to unselect how we can do it? > > > > i try to find something like > > > > lswResults.Items.Unselect > > > > but there is no Items (as there is Rows class for grd) class or > > something similar. > > > > > > > > > > ------------------------------------------------------------------------------ > > Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From math.eber at ...221... Fri Oct 15 22:13:38 2010 From: math.eber at ...221... (Matti) Date: Fri, 15 Oct 2010 22:13:38 +0200 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <1287172616.4220.1.camel@...2493...> References: <1287160111.811.3.camel@...2493...> <4CB8A713.2010700@...221...> <1287172616.4220.1.camel@...2493...> Message-ID: <4CB8B5F2.3040205@...221...> You are right, that's the elegant solution: ListView1.SelectAll(False) It is always good to read the docs carefully (which I didn't) Am 15.10.2010 21:56, schrieb user: > Hm, i think i found it.... > > > ListView.SelectAll (gb.qt) > Syntax > > ------------------------------ > SUB SelectAll ( [ Selected AS Boolean ] ) > ------------------------------ > > Selects or deselects all items in the view. > > * If Selected is TRUE, then all items are selected. This is the > default value. > * If Selected is FALSE, then all items are deselected. > > > > On Fri, 2010-10-15 at 21:10 +0200, Matti wrote: >> >From the docs: >> .ListViewItem.Selected >> PROPERTY Selected AS Boolean >> Indicates if the item is selected >> >> I tried it (Gambas3) like this: >> ListView1.MoveFirst >> Do While ListView1.Item >> ListView1.Item.Selected = False >> ListView1.MoveNext >> Loop >> >> Probably, there are more elegant ways, but it works. >> >> Regards >> Matti >> >> >> Am 15.10.2010 18:28, schrieb user: >>> Hi to all again, >>> >>> In a GridView we can unselect the selected rows as following >>> >>> grdResults.Rows.Unselect >>> >>> In a ListView control when i want to unselect how we can do it? >>> >>> i try to find something like >>> >>> lswResults.Items.Unselect >>> >>> but there is no Items (as there is Rows class for grd) class or >>> something similar. >>> >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Download new Adobe(R) Flash(R) Builder(TM) 4 >>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >>> Flex(R) Builder(TM)) enable the development of rich applications that run >>> across multiple browsers and platforms. Download your free trials today! >>> http://p.sf.net/sfu/adobe-dev2dev >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >> ------------------------------------------------------------------------------ >> Download new Adobe(R) Flash(R) Builder(TM) 4 >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> Flex(R) Builder(TM)) enable the development of rich applications that run >> across multiple browsers and platforms. Download your free trials today! >> http://p.sf.net/sfu/adobe-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From demosthenesk at ...626... Fri Oct 15 22:58:03 2010 From: demosthenesk at ...626... (user) Date: Fri, 15 Oct 2010 23:58:03 +0300 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <4CB8B5F2.3040205@...221...> References: <1287160111.811.3.camel@...2493...> <4CB8A713.2010700@...221...> <1287172616.4220.1.camel@...2493...> <4CB8B5F2.3040205@...221...> Message-ID: <1287176283.16634.2.camel@...2494...> i have difficulties with the docs. they are not easy searched. for example i found easy for gridview unselect and i expected to be something similar for other controls with Select methods as Listview i did not expect to find the unselect in SelectAll method! On Fri, 2010-10-15 at 22:13 +0200, Matti wrote: > You are right, that's the elegant solution: > ListView1.SelectAll(False) > > It is always good to read the docs carefully (which I didn't) > > > > Am 15.10.2010 21:56, schrieb user: > > Hm, i think i found it.... > > > > > > ListView.SelectAll (gb.qt) > > Syntax > > > > ------------------------------ > > SUB SelectAll ( [ Selected AS Boolean ] ) > > ------------------------------ > > > > Selects or deselects all items in the view. > > > > * If Selected is TRUE, then all items are selected. This is the > > default value. > > * If Selected is FALSE, then all items are deselected. > > > > > > > > On Fri, 2010-10-15 at 21:10 +0200, Matti wrote: > >> >From the docs: > >> .ListViewItem.Selected > >> PROPERTY Selected AS Boolean > >> Indicates if the item is selected > >> > >> I tried it (Gambas3) like this: > >> ListView1.MoveFirst > >> Do While ListView1.Item > >> ListView1.Item.Selected = False > >> ListView1.MoveNext > >> Loop > >> > >> Probably, there are more elegant ways, but it works. > >> > >> Regards > >> Matti > >> > >> > >> Am 15.10.2010 18:28, schrieb user: > >>> Hi to all again, > >>> > >>> In a GridView we can unselect the selected rows as following > >>> > >>> grdResults.Rows.Unselect > >>> > >>> In a ListView control when i want to unselect how we can do it? > >>> > >>> i try to find something like > >>> > >>> lswResults.Items.Unselect > >>> > >>> but there is no Items (as there is Rows class for grd) class or > >>> something similar. > >>> > >>> > >>> > >>> > >>> ------------------------------------------------------------------------------ > >>> Download new Adobe(R) Flash(R) Builder(TM) 4 > >>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >>> Flex(R) Builder(TM)) enable the development of rich applications that run > >>> across multiple browsers and platforms. Download your free trials today! > >>> http://p.sf.net/sfu/adobe-dev2dev > >>> _______________________________________________ > >>> Gambas-user mailing list > >>> Gambas-user at lists.sourceforge.net > >>> https://lists.sourceforge.net/lists/listinfo/gambas-user > >>> > >> > >> ------------------------------------------------------------------------------ > >> Download new Adobe(R) Flash(R) Builder(TM) 4 > >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >> Flex(R) Builder(TM)) enable the development of rich applications that run > >> across multiple browsers and platforms. Download your free trials today! > >> http://p.sf.net/sfu/adobe-dev2dev > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > ------------------------------------------------------------------------------ > > Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From math.eber at ...221... Fri Oct 15 23:21:24 2010 From: math.eber at ...221... (Matti) Date: Fri, 15 Oct 2010 23:21:24 +0200 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <1287176283.16634.2.camel@...2494...> References: <1287160111.811.3.camel@...2493...> <4CB8A713.2010700@...221...> <1287172616.4220.1.camel@...2493...> <4CB8B5F2.3040205@...221...> <1287176283.16634.2.camel@...2494...> Message-ID: <4CB8C5D4.5040908@...221...> This is not a problem with the docs. You expected a similar method that the programmer didn't have written. Maybe he should better have wirtten a method like ListView1.Unselect? Am 15.10.2010 22:58, schrieb user: > i have difficulties with the docs. > > they are not easy searched. > > for example i found easy for gridview unselect and i expected to be > something similar for other controls with Select methods as Listview > > i did not expect to find the unselect in SelectAll method! > > On Fri, 2010-10-15 at 22:13 +0200, Matti wrote: >> You are right, that's the elegant solution: >> ListView1.SelectAll(False) >> >> It is always good to read the docs carefully (which I didn't) >> >> >> >> Am 15.10.2010 21:56, schrieb user: >>> Hm, i think i found it.... >>> >>> >>> ListView.SelectAll (gb.qt) >>> Syntax >>> >>> ------------------------------ >>> SUB SelectAll ( [ Selected AS Boolean ] ) >>> ------------------------------ >>> >>> Selects or deselects all items in the view. >>> >>> * If Selected is TRUE, then all items are selected. This is the >>> default value. >>> * If Selected is FALSE, then all items are deselected. >>> >>> >>> >>> On Fri, 2010-10-15 at 21:10 +0200, Matti wrote: >>>> >From the docs: >>>> .ListViewItem.Selected >>>> PROPERTY Selected AS Boolean >>>> Indicates if the item is selected >>>> >>>> I tried it (Gambas3) like this: >>>> ListView1.MoveFirst >>>> Do While ListView1.Item >>>> ListView1.Item.Selected = False >>>> ListView1.MoveNext >>>> Loop >>>> >>>> Probably, there are more elegant ways, but it works. >>>> >>>> Regards >>>> Matti >>>> >>>> >>>> Am 15.10.2010 18:28, schrieb user: >>>>> Hi to all again, >>>>> >>>>> In a GridView we can unselect the selected rows as following >>>>> >>>>> grdResults.Rows.Unselect >>>>> >>>>> In a ListView control when i want to unselect how we can do it? >>>>> >>>>> i try to find something like >>>>> >>>>> lswResults.Items.Unselect >>>>> >>>>> but there is no Items (as there is Rows class for grd) class or >>>>> something similar. >>>>> >>>>> >>>>> >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> Download new Adobe(R) Flash(R) Builder(TM) 4 >>>>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >>>>> Flex(R) Builder(TM)) enable the development of rich applications that run >>>>> across multiple browsers and platforms. Download your free trials today! >>>>> http://p.sf.net/sfu/adobe-dev2dev >>>>> _______________________________________________ >>>>> Gambas-user mailing list >>>>> Gambas-user at lists.sourceforge.net >>>>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> Download new Adobe(R) Flash(R) Builder(TM) 4 >>>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >>>> Flex(R) Builder(TM)) enable the development of rich applications that run >>>> across multiple browsers and platforms. Download your free trials today! >>>> http://p.sf.net/sfu/adobe-dev2dev >>>> _______________________________________________ >>>> Gambas-user mailing list >>>> Gambas-user at lists.sourceforge.net >>>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Download new Adobe(R) Flash(R) Builder(TM) 4 >>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >>> Flex(R) Builder(TM)) enable the development of rich applications that run >>> across multiple browsers and platforms. Download your free trials today! >>> http://p.sf.net/sfu/adobe-dev2dev >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >> ------------------------------------------------------------------------------ >> Download new Adobe(R) Flash(R) Builder(TM) 4 >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> Flex(R) Builder(TM)) enable the development of rich applications that run >> across multiple browsers and platforms. Download your free trials today! >> http://p.sf.net/sfu/adobe-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From soleilpqd at ...626... Sat Oct 16 00:17:28 2010 From: soleilpqd at ...626... (=?UTF-8?B?UGjhuqFtIFF1YW5nIETGsMahbmc=?=) Date: Sat, 16 Oct 2010 05:17:28 +0700 Subject: [Gambas-user] Form transparent Message-ID: Hi everyone, I knew that we can make a transparent form with Mask & Picture properties. But it remove the transparent part of the form, so all controls (part) placed on this area are hidden & we can click through. I want a transparent form to see the back of the form & display some controls & detect mouse events (click, move...). Is it possible??? I tried with both Gambas 2 & 3, and found that Gambas3 form has a property named Opacity but it seem that this property does nothing (I don't know this property effect because it doesn't have description). From gambas at ...1... Sat Oct 16 00:38:59 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sat, 16 Oct 2010 00:38:59 +0200 Subject: [Gambas-user] Form transparent In-Reply-To: References: Message-ID: <201010160038.59563.gambas@...1...> > Hi everyone, > > I knew that we can make a transparent form with Mask & Picture properties. > But it remove the transparent part of the form, so all controls (part) > placed on this area are hidden & we can click through. > I want a transparent form to see the back of the form & display some > controls & detect mouse events (click, move...). Is it possible??? I tried > with both Gambas 2 & 3, and found that Gambas3 form has a property named > Opacity but it seem that this property does nothing (I don't know this > property effect because it doesn't have description). Opacity defined the transparency of the window. But it works only if you run a composition manager. Regards, -- Beno?t Minisini From gambas at ...1... Sat Oct 16 00:40:27 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sat, 16 Oct 2010 00:40:27 +0200 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <4CB8C5D4.5040908@...221...> References: <1287160111.811.3.camel@...2493...> <1287176283.16634.2.camel@...2494...> <4CB8C5D4.5040908@...221...> Message-ID: <201010160040.27107.gambas@...1...> > This is not a problem with the docs. > You expected a similar method that the programmer didn't have written. > Maybe he should better have wirtten a method like ListView1.Unselect? > Yes. The selection interface between ListView/ColumnView/Treeview should have the same methods as as the GridView interface. I note that on the TODO list. Regards, -- Beno?t Minisini From jshackney at ...626... Sat Oct 16 01:02:46 2010 From: jshackney at ...626... (Jason Hackney) Date: Fri, 15 Oct 2010 19:02:46 -0400 Subject: [Gambas-user] Error after project is compiled In-Reply-To: <201010082107.34862.gambas@...1...> References: <201010082040.27697.gambas@...1...> <201010082107.34862.gambas@...1...> Message-ID: I'm going to have to get back with you on this. That machine is having other problems as well as this--I am considering a full re-install of the OS. By the way, all of my other projects on that machine compile to an executable and run without a hitch. So, I'm not sure why it's just this one. Jussi, thanks for the script. I've been meaning to put together something like that, but haven't really been properly motivated. 2010/10/8 Beno?t Minisini > > I have used these commands to clear old installation. > > *sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 > > /usr/local/bin/gbi3 > > sudo rm -rf /usr/local/lib/gambas3 > > sudo rm -rf /usr/local/share/gambas3* > > > > In fact I have this on script for compiling Gambas: > > *#!/bin/sh > > sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 > > /usr/local/bin/gbi3 > > sudo rm -rf /usr/local/lib/gambas3 > > sudo rm -rf /usr/local/share/gambas3 > > cd ~/trunk > > ./reconf-all && ./configure -C && make && sudo make install > > sudo -k* > > > > Jussi > > > > There is a reference on a gb.qt.component file in the compilation > installation. Can you find that file on your hard disk? > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From demosthenesk at ...626... Sat Oct 16 08:55:38 2010 From: demosthenesk at ...626... (user) Date: Sat, 16 Oct 2010 09:55:38 +0300 Subject: [Gambas-user] GridView and ListView Selections In-Reply-To: <4CB8C5D4.5040908@...221...> References: <1287160111.811.3.camel@...2493...> <4CB8A713.2010700@...221...> <1287172616.4220.1.camel@...2493...> <4CB8B5F2.3040205@...221...> <1287176283.16634.2.camel@...2494...> <4CB8C5D4.5040908@...221...> Message-ID: <1287212138.6766.3.camel@...2493...> Good morning to all, Yes that would be nice and would help to thinking while reading similar methods in other controls. On Fri, 2010-10-15 at 23:21 +0200, Matti wrote: > This is not a problem with the docs. > You expected a similar method that the programmer didn't have written. > Maybe he should better have wirtten a method like ListView1.Unselect? > > > Am 15.10.2010 22:58, schrieb user: > > i have difficulties with the docs. > > > > they are not easy searched. > > > > for example i found easy for gridview unselect and i expected to be > > something similar for other controls with Select methods as Listview > > > > i did not expect to find the unselect in SelectAll method! > > > > On Fri, 2010-10-15 at 22:13 +0200, Matti wrote: > >> You are right, that's the elegant solution: > >> ListView1.SelectAll(False) > >> > >> It is always good to read the docs carefully (which I didn't) > >> > >> > >> > >> Am 15.10.2010 21:56, schrieb user: > >>> Hm, i think i found it.... > >>> > >>> > >>> ListView.SelectAll (gb.qt) > >>> Syntax > >>> > >>> ------------------------------ > >>> SUB SelectAll ( [ Selected AS Boolean ] ) > >>> ------------------------------ > >>> > >>> Selects or deselects all items in the view. > >>> > >>> * If Selected is TRUE, then all items are selected. This is the > >>> default value. > >>> * If Selected is FALSE, then all items are deselected. > >>> > >>> > >>> > >>> On Fri, 2010-10-15 at 21:10 +0200, Matti wrote: > >>>> >From the docs: > >>>> .ListViewItem.Selected > >>>> PROPERTY Selected AS Boolean > >>>> Indicates if the item is selected > >>>> > >>>> I tried it (Gambas3) like this: > >>>> ListView1.MoveFirst > >>>> Do While ListView1.Item > >>>> ListView1.Item.Selected = False > >>>> ListView1.MoveNext > >>>> Loop > >>>> > >>>> Probably, there are more elegant ways, but it works. > >>>> > >>>> Regards > >>>> Matti > >>>> > >>>> > >>>> Am 15.10.2010 18:28, schrieb user: > >>>>> Hi to all again, > >>>>> > >>>>> In a GridView we can unselect the selected rows as following > >>>>> > >>>>> grdResults.Rows.Unselect > >>>>> > >>>>> In a ListView control when i want to unselect how we can do it? > >>>>> > >>>>> i try to find something like > >>>>> > >>>>> lswResults.Items.Unselect > >>>>> > >>>>> but there is no Items (as there is Rows class for grd) class or > >>>>> something similar. > >>>>> > >>>>> > >>>>> > >>>>> > >>>>> ------------------------------------------------------------------------------ > >>>>> Download new Adobe(R) Flash(R) Builder(TM) 4 > >>>>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >>>>> Flex(R) Builder(TM)) enable the development of rich applications that run > >>>>> across multiple browsers and platforms. Download your free trials today! > >>>>> http://p.sf.net/sfu/adobe-dev2dev > >>>>> _______________________________________________ > >>>>> Gambas-user mailing list > >>>>> Gambas-user at lists.sourceforge.net > >>>>> https://lists.sourceforge.net/lists/listinfo/gambas-user > >>>>> > >>>> > >>>> ------------------------------------------------------------------------------ > >>>> Download new Adobe(R) Flash(R) Builder(TM) 4 > >>>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >>>> Flex(R) Builder(TM)) enable the development of rich applications that run > >>>> across multiple browsers and platforms. Download your free trials today! > >>>> http://p.sf.net/sfu/adobe-dev2dev > >>>> _______________________________________________ > >>>> Gambas-user mailing list > >>>> Gambas-user at lists.sourceforge.net > >>>> https://lists.sourceforge.net/lists/listinfo/gambas-user > >>> > >>> > >>> > >>> ------------------------------------------------------------------------------ > >>> Download new Adobe(R) Flash(R) Builder(TM) 4 > >>> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >>> Flex(R) Builder(TM)) enable the development of rich applications that run > >>> across multiple browsers and platforms. Download your free trials today! > >>> http://p.sf.net/sfu/adobe-dev2dev > >>> _______________________________________________ > >>> Gambas-user mailing list > >>> Gambas-user at lists.sourceforge.net > >>> https://lists.sourceforge.net/lists/listinfo/gambas-user > >>> > >> > >> ------------------------------------------------------------------------------ > >> Download new Adobe(R) Flash(R) Builder(TM) 4 > >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >> Flex(R) Builder(TM)) enable the development of rich applications that run > >> across multiple browsers and platforms. Download your free trials today! > >> http://p.sf.net/sfu/adobe-dev2dev > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > ------------------------------------------------------------------------------ > > Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From mohareve at ...626... Sat Oct 16 09:55:35 2010 From: mohareve at ...626... (M. Cs.) Date: Sat, 16 Oct 2010 09:55:35 +0200 Subject: [Gambas-user] Barcode reader Message-ID: Is it possible to use Gambas2 (or 3) together with a barcode scanner under Linux. Is there any module available for that ? Thanks! Csaba From ea7dfh at ...2382... Sat Oct 16 10:11:39 2010 From: ea7dfh at ...2382... (EA7DFH) Date: Sat, 16 Oct 2010 10:11:39 +0200 Subject: [Gambas-user] Barcode reader In-Reply-To: References: Message-ID: <4CB95E3B.7040400@...2382...> El 16/10/10 09:55, M. Cs. escribi?: > Is it possible to use Gambas2 (or 3) together with a barcode scanner under > Linux. Is there any module available for that ? > > Thanks! > > Csaba > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > Hi AFAIK, the scanner itself translates the barcodes to numbers (and/or characters) and the only thing you have to do is reading the stream that comes from it (ttySx or ttyUSBx). No additional module is needed, you can setup a socket for that. Regards -- Jesus, EA7DFH From ron at ...1740... Sat Oct 16 10:37:35 2010 From: ron at ...1740... (Ron) Date: Sat, 16 Oct 2010 10:37:35 +0200 Subject: [Gambas-user] Barcode reader In-Reply-To: <4CB95E3B.7040400@...2382...> References: <4CB95E3B.7040400@...2382...> Message-ID: There are also scanners which are just USB HID devices, so they function as extra input device, just do setfocus on an textlabel input field and scan. See here for the barcode scan code I once made (for fun)... http://www.domotiga.nl/browser/trunk/DomotiGa/FBarcodes.class#L1 http://www.domotiga.nl/attachment/wiki/Images/domotiga-barcode.png http://www.domotiga.nl/wiki/Domotiga/Barcode It even works with a camera (with autofocus) and zbarcam exec. Regards, Ron_2nd. On Sat, Oct 16, 2010 at 10:11 AM, EA7DFH wrote: > El 16/10/10 09:55, M. Cs. escribi?: > > Is it possible to use Gambas2 (or 3) together with a barcode scanner > under > > Linux. Is there any module available for that ? > > > > Thanks! > > > > Csaba > > > ------------------------------------------------------------------------------ > > Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > Hi > > AFAIK, the scanner itself translates the barcodes to numbers (and/or > characters) and the only thing you have to do is reading the stream that > comes from it (ttySx or ttyUSBx). No additional module is needed, you > can setup a socket for that. > > Regards > > -- > Jesus, EA7DFH > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From ron at ...1740... Sat Oct 16 12:20:32 2010 From: ron at ...1740... (Ron) Date: Sat, 16 Oct 2010 12:20:32 +0200 Subject: [Gambas-user] Search window behavior in Gambas3 Message-ID: I find the behavior of the new search/replace window in Gambas3 a bit annoying sorry. Either it's to small and not easy to enlarge by just clicking a button, or it's to big and covers the code you where searching for. I suggest to add a behavior, that if you double click a line in the search result, it will jump to that line in the code and hide/minimalise the search window.. Regards, Ron_2nd. From charles at ...1784... Sat Oct 16 13:43:10 2010 From: charles at ...1784... (charlesg) Date: Sat, 16 Oct 2010 04:43:10 -0700 (PDT) Subject: [Gambas-user] Barcode reader In-Reply-To: References: Message-ID: <29978278.post@...1379...> I have Metrologic and Symbol scanners working with 'keyboard wedge' interface. Needs a computer with ps2 keyboard socket though. Connect scanner to keyboard port, keyboard to scanner and computer can't tell the difference. minthaka wrote: > > Is it possible to use Gambas2 (or 3) together with a barcode scanner under > Linux. Is there any module available for that ? > -- View this message in context: http://old.nabble.com/Barcode-reader-tp29977467p29978278.html Sent from the gambas-user mailing list archive at Nabble.com. From jussi.lahtinen at ...626... Sat Oct 16 13:52:59 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Sat, 16 Oct 2010 14:52:59 +0300 Subject: [Gambas-user] Search window behavior in Gambas3 In-Reply-To: References: Message-ID: I think this is good idea. Or maybe Ctrl + F should have flip-flop behaviour to hide/show search window. Jussi On Sat, Oct 16, 2010 at 13:20, Ron wrote: > I find the behavior of the new search/replace window in Gambas3 a bit > annoying sorry. > > Either it's to small and not easy to enlarge by just clicking a button, or > it's to big and covers the code you where searching for. > > I suggest to add a behavior, that if you double click a line in the search > result, it will jump to that line in the code and hide/minimalise the > search > window.. > > Regards, > Ron_2nd. > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From ea7dfh at ...2382... Sat Oct 16 14:24:19 2010 From: ea7dfh at ...2382... (EA7DFH) Date: Sat, 16 Oct 2010 14:24:19 +0200 Subject: [Gambas-user] Maverick -dev dependencies and install scripts Message-ID: <4CB99973.8010509@...2382...> Hi Just for your information, I have modified dependencies list in the wiki to reflect the correct ones for Ubuntu Maverick. Removed libesd-alsa0, which is correctly resolved with current libesd0-dev and changed libmysqlclient15-dev to libmysqlclient-dev. Otherwise, compiling process will fail. Also, some time ago, I've created two scripts to automate the installation from SVN for both, Gambas2 and Gambas3 for Ubuntu, which you can find attached. Those are in Spanish, but sure you could modify at your own. If you can improve it, please share it! -- Jesus, EA7DFH -------------- next part -------------- A non-text attachment was scrubbed... Name: install_gambas3.sh Type: application/x-sh Size: 6469 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: install_gambas2.sh Type: application/x-sh Size: 6403 bytes Desc: not available URL: From office.zolano at ...626... Sat Oct 16 19:07:23 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Sat, 16 Oct 2010 20:07:23 +0300 Subject: [Gambas-user] Database connection problem Message-ID: <1287248843.3070.15.camel@...2499...> Hi! I'm trying to write a small code using a database on a server (small home network). On the server machine I have installed: Ubuntu 10.10, Apache2, Mysql-server version 5.1.49. Here in my.cnf I deleted the row containing "bind-address=127.0.0.1". This machine have the local IP address: 192.168.1.111 The name of the machine: Ubiserver. I created here a database named: Zolano On the user machine I have: Ubuntu 9.10, Apache2, Mysql-server 5.1.37 and Mysql-client ...and Gambas2 version 2.21.0 This machine have IP address 192.168.1.11 Here also made the same change in my.cnf The name of the machine: Ubuntuone In Gambas2 on "Ubuntuone" I made the connection in following way: PUBLIC FUNCTION connect(host AS String, lgn AS String, pass AS String, baza AS String) AS Boolean $db.close $db.Type = "mysql" $db.Host = host $db.Login = lgn $db.Password = pass $db.Name = baza $db.Port = "3306" $db.Open RETURN TRUE CATCH Message.error(Error.text) RETURN FALSE END PUBLIC SUB FORM_OPEN() IF connect("192.168.1.111", "root", "admin", "zolano") = TRUE ..... ELSE ME.Close ENDIF END This code return an error: "Can't open database. Host 'Ubuntuone.local' is not allowed to connect to this MySQL server." If I use "localhost" instead of "192.168.1.111" is everything allright, and the tables is saved on my local machine. BUT I have to use the database created on server. I am sure that is not a Gambas2 problem, but I would be happy if somebody can guide me, where is the mistake.. Thank you. Best regards, Zoli B. From ea7dfh at ...2382... Sat Oct 16 19:15:38 2010 From: ea7dfh at ...2382... (EA7DFH) Date: Sat, 16 Oct 2010 19:15:38 +0200 Subject: [Gambas-user] Database connection problem In-Reply-To: <1287248843.3070.15.camel@...2499...> References: <1287248843.3070.15.camel@...2499...> Message-ID: <4CB9DDBA.1050605@...2382...> El 16/10/10 19:07, Biro Zoltan escribi?: > Hi! > > I'm trying to write a small code using a database on a server (small > home network). > > On the server machine I have installed: Ubuntu 10.10, Apache2, > Mysql-server version 5.1.49. Here in my.cnf I deleted the row containing > "bind-address=127.0.0.1". This machine have the local IP address: > 192.168.1.111 The name of the machine: Ubiserver. I created here a > database named: Zolano > > On the user machine I have: Ubuntu 9.10, Apache2, Mysql-server 5.1.37 > and Mysql-client ...and Gambas2 version 2.21.0 This machine have IP > address 192.168.1.11 Here also made the same change in my.cnf The name > of the machine: Ubuntuone > > In Gambas2 on "Ubuntuone" I made the connection in following way: > > PUBLIC FUNCTION connect(host AS String, lgn AS String, pass AS String, > baza AS String) AS Boolean > $db.close > $db.Type = "mysql" > $db.Host = host > $db.Login = lgn > $db.Password = pass > $db.Name = baza > $db.Port = "3306" > $db.Open > RETURN TRUE > CATCH > Message.error(Error.text) > RETURN FALSE > END > > PUBLIC SUB FORM_OPEN() > IF connect("192.168.1.111", "root", "admin", "zolano") = TRUE > ..... > ELSE > ME.Close > ENDIF > END > > This code return an error: "Can't open database. Host 'Ubuntuone.local' > is not allowed to connect to this MySQL server." > > If I use "localhost" instead of "192.168.1.111" is everything allright, > and the tables is saved on my local machine. > BUT I have to use the database created on server. > I am sure that is not a Gambas2 problem, but I would be happy if > somebody can guide me, where is the mistake.. > Thank you. > > Best regards, > Zoli B. > This link may help you: http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html (Please, take it as one single line, because wrapping of mail clients) Regards -- Jesus, EA7DFH From gambas at ...1... Sat Oct 16 22:45:30 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sat, 16 Oct 2010 22:45:30 +0200 Subject: [Gambas-user] Search window behavior in Gambas3 In-Reply-To: References: Message-ID: <201010162245.30840.gambas@...1...> > I think this is good idea. > Or maybe Ctrl + F should have flip-flop behaviour to hide/show search > window. > > Jussi > > On Sat, Oct 16, 2010 at 13:20, Ron wrote: > > I find the behavior of the new search/replace window in Gambas3 a bit > > annoying sorry. > > > > Either it's to small and not easy to enlarge by just clicking a button, > > or it's to big and covers the code you where searching for. > > > > I suggest to add a behavior, that if you double click a line in the > > search result, it will jump to that line in the code and hide/minimalise > > the search > > window.. > > > > Regards, > > Ron_2nd. > > I'm not satisfied too! :-) -- Beno?t Minisini From rolf.frogs at ...221... Sun Oct 17 21:36:49 2010 From: rolf.frogs at ...221... (Rolf Schmidt) Date: Sun, 17 Oct 2010 21:36:49 +0200 Subject: [Gambas-user] Problem with PostgrSQL, Gambas 2.7 and 64-Bit Linux Message-ID: <201010172136.52602.rolf.frogs@...221...> Hi, as the subject says, I have problems with Gambas2 (version 2.7 - from the Debian repository) on a 64-Bit Linux (Debian Lenny) and postgreSQL 8.4 database. It seems, that a connection is possible, but no table is found in the given database by any query (with db.exec). Did someone else has had a simular problem? Fine regards Rolf -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part. URL: From office.zolano at ...626... Mon Oct 18 16:21:51 2010 From: office.zolano at ...626... (Biro Zoltan) Date: Mon, 18 Oct 2010 17:21:51 +0300 Subject: [Gambas-user] Form with parameters Message-ID: <1287411711.2817.5.camel@...2499...> HI, Can I make forms with parameters passed from the main form? Normally I use the form like this: PUBLIC SUB button1_Click() Childform.showmodal END BUT I need to pass some parameters to the child form. How can I do this? PUBLIC SUB button1_Click() Childform(x,y,..etc parameters).showmodal END ..or simply I have to use public variables? Thank you, Zoli B. From Karl.Reinl at ...2345... Mon Oct 18 17:30:09 2010 From: Karl.Reinl at ...2345... (Charlie Reinl) Date: Mon, 18 Oct 2010 17:30:09 +0200 Subject: [Gambas-user] Form with parameters In-Reply-To: <1287411711.2817.5.camel@...2499...> References: <1287411711.2817.5.camel@...2499...> Message-ID: <1287415809.6384.2.camel@...40...> Am Montag, den 18.10.2010, 17:21 +0300 schrieb Biro Zoltan: > HI, > > Can I make forms with parameters passed from the main form? > > Normally I use the form like this: > > PUBLIC SUB button1_Click() > Childform.showmodal > END > > BUT I need to pass some parameters to the child form. How can I do this? > > PUBLIC SUB button1_Click() > Childform(x,y,..etc parameters).showmodal > END > ..or simply I have to use public variables? > > Thank you, > Zoli B. > Salut Zoli, you can pas then in NEW or Run, or by a Public Sub/Function between NEW and Show. -- Amicalement Charlie From demosthenesk at ...626... Mon Oct 18 17:36:43 2010 From: demosthenesk at ...626... (user) Date: Mon, 18 Oct 2010 18:36:43 +0300 Subject: [Gambas-user] Form with parameters In-Reply-To: <1287411711.2817.5.camel@...2499...> References: <1287411711.2817.5.camel@...2499...> Message-ID: <1287416203.3225.7.camel@...2494...> The way i use is to set PUBLIC variables in a Module. Then before ShowModal i set these variables and read them from the modal form. See example Tests. On Mon, 2010-10-18 at 17:21 +0300, Biro Zoltan wrote: > HI, > > Can I make forms with parameters passed from the main form? > > Normally I use the form like this: > > PUBLIC SUB button1_Click() > Childform.showmodal > END > > BUT I need to pass some parameters to the child form. How can I do this? > > PUBLIC SUB button1_Click() > Childform(x,y,..etc parameters).showmodal > END > ..or simply I have to use public variables? > > Thank you, > Zoli B. > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -------------- next part -------------- A non-text attachment was scrubbed... Name: Tests.tar.bz2 Type: application/x-bzip-compressed-tar Size: 9337 bytes Desc: not available URL: From jussi.lahtinen at ...626... Mon Oct 18 17:46:16 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Mon, 18 Oct 2010 18:46:16 +0300 Subject: [Gambas-user] Form with parameters In-Reply-To: <1287411711.2817.5.camel@...2499...> References: <1287411711.2817.5.camel@...2499...> Message-ID: Dim MyForm as New SomeForm MyForm.MyVariable1 = Something MyForm.MyVariable2 = SomethingElse ... MyFrom.Showmodal() Jussi On Mon, Oct 18, 2010 at 17:21, Biro Zoltan wrote: > HI, > > Can I make forms with parameters passed from the main form? > > Normally I use the form like this: > > PUBLIC SUB button1_Click() > Childform.showmodal > END > > BUT I need to pass some parameters to the child form. How can I do this? > > PUBLIC SUB button1_Click() > Childform(x,y,..etc parameters).showmodal > END > ..or simply I have to use public variables? > > Thank you, > Zoli B. > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bbruen at ...2308... Tue Oct 19 06:01:59 2010 From: bbruen at ...2308... (B Bruen) Date: Tue, 19 Oct 2010 14:31:59 +1030 Subject: [Gambas-user] Beep? Message-ID: <4CBD1837.7040806@...2308...> Pretty simple? How can I make the computer go "beep" (I have a very long routine to run, I estimate over 10 hours and will probably have to run it several dozen times. I have built it to run as a console app, so it can toddle along happily in the background, so to speak. Every now and then it requires operator input to resolve a choice that it cant make. So I would just like it to beep when this happens.) bruce From charles at ...1784... Tue Oct 19 11:05:05 2010 From: charles at ...1784... (charlesg) Date: Tue, 19 Oct 2010 02:05:05 -0700 (PDT) Subject: [Gambas-user] Beep? In-Reply-To: <4CBD1837.7040806@...2308...> References: <4CBD1837.7040806@...2308...> Message-ID: <29998294.post@...1379...> SHELL "echo -e \"\\007\" >/dev/tty10" I think I got that from this forum. bbb888 wrote: > > Pretty simple? > > How can I make the computer go "beep" > -- View this message in context: http://old.nabble.com/Beep--tp29997205p29998294.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Tue Oct 19 11:07:54 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Tue, 19 Oct 2010 11:07:54 +0200 Subject: [Gambas-user] Beep? In-Reply-To: <29998294.post@...1379...> References: <4CBD1837.7040806@...2308...> <29998294.post@...1379...> Message-ID: <201010191107.54174.gambas@...1...> > SHELL "echo -e \"\\007\" >/dev/tty10" > > I think I got that from this forum. > > bbb888 wrote: > > Pretty simple? > > > > How can I make the computer go "beep" In Gambas, PRINT Chr$(7); if you are running inside a terminal. But if your terminal is an emulator (e.g. konsole), you may have to configure it to actually make a true beep. Regards, -- Beno?t Minisini From charles at ...1784... Tue Oct 19 11:19:01 2010 From: charles at ...1784... (charlesg) Date: Tue, 19 Oct 2010 02:19:01 -0700 (PDT) Subject: [Gambas-user] Beep? In-Reply-To: <201010191107.54174.gambas@...1...> References: <4CBD1837.7040806@...2308...> <29998294.post@...1379...> <201010191107.54174.gambas@...1...> Message-ID: <29998393.post@...1379...> Just as well! I just tested my version and it doesn't work anyway. :,( 'echo -e \\007' does work from terminal. Beno?t Minisini wrote: > >> SHELL "echo -e \"\\007\" >/dev/tty10" >> >> I think I got that from this forum. >> >> bbb888 wrote: >> > Pretty simple? >> > >> > How can I make the computer go "beep" > > In Gambas, PRINT Chr$(7); if you are running inside a terminal. But if > your > terminal is an emulator (e.g. konsole), you may have to configure it to > actually make a true beep. > > Regards, > > -- > Beno?t Minisini > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -- View this message in context: http://old.nabble.com/Beep--tp29997205p29998393.html Sent from the gambas-user mailing list archive at Nabble.com. From bbruen at ...2308... Tue Oct 19 12:01:54 2010 From: bbruen at ...2308... (B Bruen) Date: Tue, 19 Oct 2010 20:31:54 +1030 Subject: [Gambas-user] Beep? Solved! Thanks In-Reply-To: <29998393.post@...1379...> References: <4CBD1837.7040806@...2308...> <29998294.post@...1379...> <201010191107.54174.gambas@...1...> <29998393.post@...1379...> Message-ID: <4CBD6C92.6030803@...2308...> On 19/10/10 19:49, charlesg wrote: > Just as well! I just tested my version and it doesn't work anyway. :,( > > 'echo -e \\007' does work from terminal. > > > > Beno?t Minisini wrote: >>> SHELL "echo -e \"\\007\">/dev/tty10" >>> >>> I think I got that from this forum. >>> >>> bbb888 wrote: >>>> Pretty simple? >>>> >>>> How can I make the computer go "beep" >> In Gambas, PRINT Chr$(7); if you are running inside a terminal. But if >> your >> terminal is an emulator (e.g. konsole), you may have to configure it to >> actually make a true beep. >> >> Regards, >> >> -- >> Beno?t Minisini >> >> ------------------------------------------------------------------------------ >> Download new Adobe(R) Flash(R) Builder(TM) 4 >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> Flex(R) Builder(TM)) enable the development of rich applications that run >> across multiple browsers and platforms. Download your free trials today! >> http://p.sf.net/sfu/adobe-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> >> Amazing!! Thank you both. In fact all 3 or was it four methods seem to work. Apologies. I did not think to search the forum. Anyway, (beep,beep) I'd better go .... Thanks again Bruce p.s. If its of interest, I am matching patient data over five historical databases ( up to 22 years old) for some pathology research guys. I now have all databases loaded "in image" into postgresql databases and am trying to match the patients based on names, addresses, referring doctor etc etc. Its a lot of "fun" trying to determine strategies to decide on a match or not! But we are now down to 145000 odd un- or "not sure" matches from over 1,600,000 pathology test reports. The big project is about determining how much pathology has improved, my part is just to try and fine down pathology history into "unique patient" histories. I got the job because about 30 odd years ago I was involved in the development of one of the original "Soundex" systems in Australia to try and match patients in a casualty ward. It is a bit of fun determining the fuzzy logics here though, like "if patient.gender = "male" and matchpatient.pathtest="Pap Smear" then EliminateMatch(patient, matchpatient)" etc etc but we do get down to things like is Mr C Lo the same as Mr C Low etc. So each run over the 145000 ( and dropping) suspect matches is aimed at trying one or two new rules to eliminate incorrect matches. By the way, the 145000 suspects has around 750,000 matchpatients. So there is a way to go yet. Each run reveals the possibilty of new rules, but sometimes the existing rules don't resolve to 100% yes or no. Hence the need for the beep when the "superbrain" needs a bit of help. From jussi.lahtinen at ...626... Tue Oct 19 16:39:21 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Tue, 19 Oct 2010 17:39:21 +0300 Subject: [Gambas-user] Beep? In-Reply-To: <201010191107.54174.gambas@...1...> References: <4CBD1837.7040806@...2308...> <29998294.post@...1379...> <201010191107.54174.gambas@...1...> Message-ID: Some distributions seems to have "beep" command also. If so, then SHELL "beep". Jussi 2010/10/19 Beno?t Minisini > > SHELL "echo -e \"\\007\" >/dev/tty10" > > > > I think I got that from this forum. > > > > bbb888 wrote: > > > Pretty simple? > > > > > > How can I make the computer go "beep" > > In Gambas, PRINT Chr$(7); if you are running inside a terminal. But if your > terminal is an emulator (e.g. konsole), you may have to configure it to > actually make a true beep. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From o.s.p at ...69... Wed Oct 20 13:01:43 2010 From: o.s.p at ...69... (o.s.p@libero.it) Date: Wed, 20 Oct 2010 13:01:43 +0200 Subject: [Gambas-user] trunk make error Message-ID: what is this error? make all-recursive make[1]: Entering directory `/home/god/Desktop/src/g/trunk' Making all in main make[2]: Entering directory `/home/god/Desktop/src/g/trunk/main' make all-recursive make[3]: Entering directory `/home/god/Desktop/src/g/trunk/main' Making all in gbc make[4]: Entering directory `/home/god/Desktop/src/g/trunk/main/gbc' make[4]: Nessuna operazione da eseguire per ?all?. make[4]: Leaving directory `/home/god/Desktop/src/g/trunk/main/gbc' Making all in gbx make[4]: Entering directory `/home/god/Desktop/src/g/trunk/main/gbx' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -DGBX_INFO -pipe -Wall -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -I../share -D_REENTRANT -I/usr/lib/gcc/i686-frugalware-linux/4.5.1/include/ -O0 -MT gb_la-gbx_c_class.lo -MD -MP -MF .deps/gb_la-gbx_c_class.Tpo -c -o gb_la-gbx_c_class.lo `test -f 'gbx_c_class.c' || echo './'`gbx_c_class.c ../libtool: line 2095: gbx_c_class.c: command not found libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -DGBX_INFO -pipe -Wall -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -I../share -D_REENTRANT -I/usr/lib/gcc/i686-frugalware-linux/4.5.1/include/ -O0 -MT gb_la-gbx_c_class.lo -MD -MP -MF .deps/gb_la-gbx_c_class.Tpo -c "" -fPIC -DPIC -o .libs/gb_la-gbx_c_class.o gcc: : No such file or directory gcc: no input files make[4]: *** [gb_la-gbx_c_class.lo] Errore 1 make[4]: Leaving directory `/home/god/Desktop/src/g/trunk/main/gbx' make[3]: *** [all-recursive] Errore 1 make[3]: Leaving directory `/home/god/Desktop/src/g/trunk/main' make[2]: *** [all] Errore 2 make[2]: Leaving directory `/home/god/Desktop/src/g/trunk/main' make[1]: *** [all-recursive] Errore 1 make[1]: Leaving directory `/home/god/Desktop/src/g/trunk' make: *** [all] Errore 2 thanks From gambas.fr at ...626... Wed Oct 20 14:56:27 2010 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 20 Oct 2010 14:56:27 +0200 Subject: [Gambas-user] trunk make error In-Reply-To: References: Message-ID: dear God, we need to know your distribution name, version and desktop used 2010/10/20 o.s.p at ...69... : > what is this error? > > make ?all-recursive > make[1]: Entering directory `/home/god/Desktop/src/g/trunk' > Making all in main > make[2]: Entering directory `/home/god/Desktop/src/g/trunk/main' > make ?all-recursive > make[3]: Entering directory `/home/god/Desktop/src/g/trunk/main' > Making all in gbc > make[4]: Entering directory `/home/god/Desktop/src/g/trunk/main/gbc' > make[4]: Nessuna operazione da eseguire per ?all?. > make[4]: Leaving directory `/home/god/Desktop/src/g/trunk/main/gbc' > Making all in gbx > make[4]: Entering directory `/home/god/Desktop/src/g/trunk/main/gbx' > /bin/sh ../libtool ?--tag=CC ? --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. ? ?-DGBX_INFO -pipe -Wall -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -I../share -D_REENTRANT ?-I/usr/lib/gcc/i686-frugalware-linux/4.5.1/include/ ?-O0 ?-MT gb_la-gbx_c_class.lo -MD -MP -MF .deps/gb_la-gbx_c_class.Tpo -c -o gb_la-gbx_c_class.lo `test -f 'gbx_c_class.c' || echo './'`gbx_c_class.c > ../libtool: line 2095: gbx_c_class.c: command not found > libtool: compile: ?gcc -DHAVE_CONFIG_H -I. -I.. -DGBX_INFO -pipe -Wall -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -I../share -D_REENTRANT -I/usr/lib/gcc/i686-frugalware-linux/4.5.1/include/ -O0 -MT gb_la-gbx_c_class.lo -MD -MP -MF .deps/gb_la-gbx_c_class.Tpo -c "" ?-fPIC -DPIC -o .libs/gb_la-gbx_c_class.o > gcc: : No such file or directory > gcc: no input files > make[4]: *** [gb_la-gbx_c_class.lo] Errore 1 > make[4]: Leaving directory `/home/god/Desktop/src/g/trunk/main/gbx' > make[3]: *** [all-recursive] Errore 1 > make[3]: Leaving directory `/home/god/Desktop/src/g/trunk/main' > make[2]: *** [all] Errore 2 > make[2]: Leaving directory `/home/god/Desktop/src/g/trunk/main' > make[1]: *** [all-recursive] Errore 1 > make[1]: Leaving directory `/home/god/Desktop/src/g/trunk' > make: *** [all] Errore 2 > > > thanks > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Fabien Bodard From o.s.p at ...69... Thu Oct 21 10:10:04 2010 From: o.s.p at ...69... (o.s.p at ...69...) Date: Thu, 21 Oct 2010 10:10:04 +0200 (CEST) Subject: [Gambas-user] R: Re: trunk make error Message-ID: <19125609.2535111287648604826.JavaMail.defaultUser@...1910...> frugalware 1.3 current kernel 2.6.35 libtool 2.4 gcc 4.5.1 automake 1.11.1 autoconf 2.68 gb_la-gbx_c_class.lo is not existent ps: no problem with gambas2 >----Messaggio originale---- >Da: gambas.fr at ...626... >Data: 20/10/2010 14.56 >A: "mailing list for gambas users" >Ogg: Re: [Gambas-user] trunk make error > >dear God, we need to know your distribution name, version and desktop used > >2010/10/20 o.s.p at ...69... : >> what is this error? >> >> make all-recursive >> make[1]: Entering directory `/home/god/Desktop/src/g/trunk' >> Making all in main >> make[2]: Entering directory `/home/god/Desktop/src/g/trunk/main' >> make all-recursive >> make[3]: Entering directory `/home/god/Desktop/src/g/trunk/main' >> Making all in gbc >> make[4]: Entering directory `/home/god/Desktop/src/g/trunk/main/gbc' >> make[4]: Nessuna operazione da eseguire per ?all?. >> make[4]: Leaving directory `/home/god/Desktop/src/g/trunk/main/gbc' >> Making all in gbx >> make[4]: Entering directory `/home/god/Desktop/src/g/trunk/main/gbx' >> /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. - I.. -DGBX_INFO -pipe -Wall -Wno-unused-value -fsigned-char - fvisibility=hidden -g -Os -I../share -D_REENTRANT -I/usr/lib/gcc/i686- frugalware-linux/4.5.1/include/ -O0 -MT gb_la-gbx_c_class.lo -MD -MP -MF . deps/gb_la-gbx_c_class.Tpo -c -o gb_la-gbx_c_class.lo `test -f 'gbx_c_class.c' || echo './'`gbx_c_class.c >> ../libtool: line 2095: gbx_c_class.c: command not found >> libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -DGBX_INFO -pipe -Wall -Wno- unused-value -fsigned-char -fvisibility=hidden -g -Os -I../share -D_REENTRANT - I/usr/lib/gcc/i686-frugalware-linux/4.5.1/include/ -O0 -MT gb_la-gbx_c_class.lo -MD -MP -MF .deps/gb_la-gbx_c_class.Tpo -c "" -fPIC -DPIC -o .libs/gb_la- gbx_c_class.o >> gcc: : No such file or directory >> gcc: no input files >> make[4]: *** [gb_la-gbx_c_class.lo] Errore 1 >> make[4]: Leaving directory `/home/god/Desktop/src/g/trunk/main/gbx' >> make[3]: *** [all-recursive] Errore 1 >> make[3]: Leaving directory `/home/god/Desktop/src/g/trunk/main' >> make[2]: *** [all] Errore 2 >> make[2]: Leaving directory `/home/god/Desktop/src/g/trunk/main' >> make[1]: *** [all-recursive] Errore 1 >> make[1]: Leaving directory `/home/god/Desktop/src/g/trunk' >> make: *** [all] Errore 2 >> >> >> thanks >> >> >> ------------------------------------------------------------------------------ >> Download new Adobe(R) Flash(R) Builder(TM) 4 >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> Flex(R) Builder(TM)) enable the development of rich applications that run >> across multiple browsers and platforms. Download your free trials today! >> http://p.sf.net/sfu/adobe-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > > >-- >Fabien Bodard > >------------------------------------------------------------------------------ >Download new Adobe(R) Flash(R) Builder(TM) 4 >The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >Flex(R) Builder(TM)) enable the development of rich applications that run >across multiple browsers and platforms. Download your free trials today! >http://p.sf.net/sfu/adobe-dev2dev >_______________________________________________ >Gambas-user mailing list >Gambas-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/gambas-user > From demosthenesk at ...626... Fri Oct 22 13:02:19 2010 From: demosthenesk at ...626... (user) Date: Fri, 22 Oct 2010 14:02:19 +0300 Subject: [Gambas-user] Huge executable. In-Reply-To: <201010042146.50954.gambas@...1...> References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> Message-ID: <1287745339.4264.5.camel@...2493...> On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: > > I created a project with gb.gui. > > > > I changed the components from gb.gui to gb.qt and tried to compile the > > project. > > > > The result was to create a name.gambas file 2 Gb and to crash the IDE. > > > > When i tried to reopen the project, in order to change the components i > > get an error message like the attached image. > > Can I have your project (without the 2Gb file of course!) ? > Hi i have finished my project about a GUI for AVG Antivirus Linux free edition. But i still have problem about creating the executable. When i run compile or compile all, all are perfect. When i run the project with Gambas IDE, all are perfect. But when i run the make executable i get a huge file which increasing in Mb for all the time when IDE run. I must kill the Gambas IDE and then delete the huge executable (over 2Gb). Benoit where can i send my project? It is 1,2 Mb From gambas at ...1... Fri Oct 22 13:48:18 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Fri, 22 Oct 2010 13:48:18 +0200 Subject: [Gambas-user] Huge executable. In-Reply-To: <1287745339.4264.5.camel@...2493...> References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> <1287745339.4264.5.camel@...2493...> Message-ID: <201010221348.18180.gambas@...1...> > On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: > > > I created a project with gb.gui. > > > > > > I changed the components from gb.gui to gb.qt and tried to compile the > > > project. > > > > > > The result was to create a name.gambas file 2 Gb and to crash the IDE. > > > > > > When i tried to reopen the project, in order to change the components i > > > get an error message like the attached image. > > > > Can I have your project (without the 2Gb file of course!) ? > > Hi i have finished my project about a GUI for AVG Antivirus Linux free > edition. > > But i still have problem about creating the executable. > When i run compile or compile all, all are perfect. > When i run the project with Gambas IDE, all are perfect. > But when i run the make executable i get a huge file which increasing in > Mb for all the time when IDE run. > > I must kill the Gambas IDE and then delete the huge executable (over > 2Gb). > > Benoit where can i send my project? It is 1,2 Mb > To my private e-mail (don't you see it in your mail client?), or put it on some server and send me a link to it. Regards, -- Beno?t Minisini From demosthenesk at ...626... Fri Oct 22 15:26:44 2010 From: demosthenesk at ...626... (Demosthenes Koptsis) Date: Fri, 22 Oct 2010 16:26:44 +0300 Subject: [Gambas-user] Huge executable. In-Reply-To: <201010221348.18180.gambas@...1...> References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> <1287745339.4264.5.camel@...2493...> <201010221348.18180.gambas@...1...> Message-ID: i use Gambas 2.21 on Ubuntu 10.04. i test the project at 32bit and 64 bit Pcs and produce the same behavior (huge executable) this is the project http://www.mediafire.com/file/0lq893dt8yo02l3/Gambas-AVG-GUI-8.tar.gz 2010/10/22 Beno?t Minisini > > On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: > > > > I created a project with gb.gui. > > > > > > > > I changed the components from gb.gui to gb.qt and tried to compile > the > > > > project. > > > > > > > > The result was to create a name.gambas file 2 Gb and to crash the > IDE. > > > > > > > > When i tried to reopen the project, in order to change the components > i > > > > get an error message like the attached image. > > > > > > Can I have your project (without the 2Gb file of course!) ? > > > > Hi i have finished my project about a GUI for AVG Antivirus Linux free > > edition. > > > > But i still have problem about creating the executable. > > When i run compile or compile all, all are perfect. > > When i run the project with Gambas IDE, all are perfect. > > But when i run the make executable i get a huge file which increasing in > > Mb for all the time when IDE run. > > > > I must kill the Gambas IDE and then delete the huge executable (over > > 2Gb). > > > > Benoit where can i send my project? It is 1,2 Mb > > > > To my private e-mail (don't you see it in your mail client?), or put it on > some server and send me a link to it. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America > contest > Create new apps & games for the Nokia N8 for consumers in U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- ???? ???? ?? ?????!!! Regards, Demosthenes Koptsis From gambas.fr at ...626... Fri Oct 22 16:33:07 2010 From: gambas.fr at ...626... (Fabien Bodard) Date: Fri, 22 Oct 2010 16:33:07 +0200 Subject: [Gambas-user] Huge executable. In-Reply-To: References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> <1287745339.4264.5.camel@...2493...> <201010221348.18180.gambas@...1...> Message-ID: 2010/10/22 Demosthenes Koptsis : > i use Gambas 2.21 on Ubuntu 10.04. > > i test the project at 32bit and 64 bit Pcs and produce the same behavior > (huge executable) > > this is the project > http://www.mediafire.com/file/0lq893dt8yo02l3/Gambas-AVG-GUI-8.tar.gz > > > 2010/10/22 Beno?t Minisini > >> > On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: >> > > > I created a project with gb.gui. >> > > > >> > > > I changed the components from gb.gui to gb.qt and tried to compile >> the >> > > > project. >> > > > >> > > > The result was to create a name.gambas file 2 Gb and to crash the >> IDE. >> > > > >> > > > When i tried to reopen the project, in order to change the components >> i >> > > > get an error message like the attached image. >> > > >> > > Can I have your project (without the 2Gb file of course!) ? >> > >> > Hi i have finished my project about a GUI for AVG Antivirus Linux free >> > edition. >> > >> > But i still have problem about creating the executable. >> > When i run compile or compile all, all are perfect. >> > When i run the project with Gambas IDE, all are perfect. >> > But when i run the make executable i get a huge file which increasing in >> > Mb for all the time when IDE run. >> > >> > I must kill the Gambas IDE and then delete the huge executable (over >> > 2Gb). >> > >> > Benoit where can i send my project? It is 1,2 Mb >> > >> >> To my private e-mail (don't you see it in your mail client?), or put it on >> some server and send me a link to it. >> >> Regards, >> >> -- >> Beno?t Minisini >> >> >> ------------------------------------------------------------------------------ >> Nokia and AT&T present the 2010 Calling All Innovators-North America >> contest >> Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >> marketing >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >> http://p.sf.net/sfu/nokia-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > > > -- > > ???? ???? ?? ?????!!! > > Regards, > > Demosthenes Koptsis > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > where are you saving the executable ? -- Fabien Bodard From simonart.dominique at ...11... Fri Oct 22 22:20:46 2010 From: simonart.dominique at ...11... (Simonart Dominique) Date: Fri, 22 Oct 2010 22:20:46 +0200 Subject: [Gambas-user] Huge executable. In-Reply-To: References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> <1287745339.4264.5.camel@...2493...> <201010221348.18180.gambas@...1...> Message-ID: <4CC1F21E.9060808@...11...> Le 22/10/2010 16:33, Fabien Bodard a ?crit : > 2010/10/22 Demosthenes Koptsis: >> i use Gambas 2.21 on Ubuntu 10.04. >> >> i test the project at 32bit and 64 bit Pcs and produce the same behavior >> (huge executable) >> >> this is the project >> http://www.mediafire.com/file/0lq893dt8yo02l3/Gambas-AVG-GUI-8.tar.gz >> >> >> 2010/10/22 Beno?t Minisini >> >>>> On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: >>>>>> I created a project with gb.gui. >>>>>> >>>>>> I changed the components from gb.gui to gb.qt and tried to compile >>> the >>>>>> project. >>>>>> >>>>>> The result was to create a name.gambas file 2 Gb and to crash the >>> IDE. >>>>>> >>>>>> When i tried to reopen the project, in order to change the components >>> i >>>>>> get an error message like the attached image. >>>>> >>>>> Can I have your project (without the 2Gb file of course!) ? >>>> >>>> Hi i have finished my project about a GUI for AVG Antivirus Linux free >>>> edition. >>>> >>>> But i still have problem about creating the executable. >>>> When i run compile or compile all, all are perfect. >>>> When i run the project with Gambas IDE, all are perfect. >>>> But when i run the make executable i get a huge file which increasing in >>>> Mb for all the time when IDE run. >>>> >>>> I must kill the Gambas IDE and then delete the huge executable (over >>>> 2Gb). >>>> >>>> Benoit where can i send my project? It is 1,2 Mb >>>> >>> >>> To my private e-mail (don't you see it in your mail client?), or put it on >>> some server and send me a link to it. >>> >>> Regards, >>> >>> -- >>> Beno?t Minisini >>> >>> >>> ------------------------------------------------------------------------------ >>> Nokia and AT&T present the 2010 Calling All Innovators-North America >>> contest >>> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >>> marketing >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >>> http://p.sf.net/sfu/nokia-dev2dev >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >> >> >> -- >> >> ???? ???? ?? ?????!!! >> >> Regards, >> >> Demosthenes Koptsis >> ------------------------------------------------------------------------------ >> Nokia and AT&T present the 2010 Calling All Innovators-North America contest >> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >> http://p.sf.net/sfu/nokia-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > where are you saving the executable ? > Hi, I remember such a problem long time ago! The destination folder was the same as the source one. Each time you generate the executable, you integrate the preceding executable into the new one.... hth Dominique Simonart From demosthenesk at ...626... Sat Oct 23 00:04:48 2010 From: demosthenesk at ...626... (Demosthenes Koptsis) Date: Sat, 23 Oct 2010 01:04:48 +0300 Subject: [Gambas-user] Huge executable. In-Reply-To: <4CC1F21E.9060808@...11...> References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> <1287745339.4264.5.camel@...2493...> <201010221348.18180.gambas@...1...> <4CC1F21E.9060808@...11...> Message-ID: i save is in a directory named "bin" one level up from source directory. On Fri, Oct 22, 2010 at 11:20 PM, Simonart Dominique < simonart.dominique at ...11...> wrote: > Le 22/10/2010 16:33, Fabien Bodard a ?crit : > > 2010/10/22 Demosthenes Koptsis: > >> i use Gambas 2.21 on Ubuntu 10.04. > >> > >> i test the project at 32bit and 64 bit Pcs and produce the same behavior > >> (huge executable) > >> > >> this is the project > >> http://www.mediafire.com/file/0lq893dt8yo02l3/Gambas-AVG-GUI-8.tar.gz > >> > >> > >> 2010/10/22 Beno?t Minisini > >> > >>>> On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: > >>>>>> I created a project with gb.gui. > >>>>>> > >>>>>> I changed the components from gb.gui to gb.qt and tried to compile > >>> the > >>>>>> project. > >>>>>> > >>>>>> The result was to create a name.gambas file 2 Gb and to crash the > >>> IDE. > >>>>>> > >>>>>> When i tried to reopen the project, in order to change the > components > >>> i > >>>>>> get an error message like the attached image. > >>>>> > >>>>> Can I have your project (without the 2Gb file of course!) ? > >>>> > >>>> Hi i have finished my project about a GUI for AVG Antivirus Linux free > >>>> edition. > >>>> > >>>> But i still have problem about creating the executable. > >>>> When i run compile or compile all, all are perfect. > >>>> When i run the project with Gambas IDE, all are perfect. > >>>> But when i run the make executable i get a huge file which increasing > in > >>>> Mb for all the time when IDE run. > >>>> > >>>> I must kill the Gambas IDE and then delete the huge executable (over > >>>> 2Gb). > >>>> > >>>> Benoit where can i send my project? It is 1,2 Mb > >>>> > >>> > >>> To my private e-mail (don't you see it in your mail client?), or put it > on > >>> some server and send me a link to it. > >>> > >>> Regards, > >>> > >>> -- > >>> Beno?t Minisini > >>> > >>> > >>> > ------------------------------------------------------------------------------ > >>> Nokia and AT&T present the 2010 Calling All Innovators-North America > >>> contest > >>> Create new apps& games for the Nokia N8 for consumers in U.S. and > Canada > >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > >>> marketing > >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi > Store > >>> http://p.sf.net/sfu/nokia-dev2dev > >>> _______________________________________________ > >>> Gambas-user mailing list > >>> Gambas-user at lists.sourceforge.net > >>> https://lists.sourceforge.net/lists/listinfo/gambas-user > >>> > >> > >> > >> > >> -- > >> > >> ???? ???? ?? ?????!!! > >> > >> Regards, > >> > >> Demosthenes Koptsis > >> > ------------------------------------------------------------------------------ > >> Nokia and AT&T present the 2010 Calling All Innovators-North America > contest > >> Create new apps& games for the Nokia N8 for consumers in U.S. and > Canada > >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > marketing > >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > >> http://p.sf.net/sfu/nokia-dev2dev > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > >> > > > > where are you saving the executable ? > > > > Hi, > I remember such a problem long time ago! > The destination folder was the same as the source one. Each > time you generate the executable, you integrate the > preceding executable into the new one.... > hth > Dominique Simonart > > > > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America > contest > Create new apps & games for the Nokia N8 for consumers in U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- ???? ???? ?? ?????!!! Regards, Demosthenes Koptsis From demosthenesk at ...626... Sat Oct 23 00:11:03 2010 From: demosthenesk at ...626... (Demosthenes Koptsis) Date: Sat, 23 Oct 2010 01:11:03 +0300 Subject: [Gambas-user] Huge executable. In-Reply-To: References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> <1287745339.4264.5.camel@...2493...> <201010221348.18180.gambas@...1...> <4CC1F21E.9060808@...11...> Message-ID: oops, sorry. the bin directory is in the project directory. Simonart you are right! This was the problem. i saved the executable outside the source directory and all is fine....! Thanks. On Sat, Oct 23, 2010 at 1:04 AM, Demosthenes Koptsis wrote: > i save is in a directory named "bin" one level up from source directory. > > > On Fri, Oct 22, 2010 at 11:20 PM, Simonart Dominique < > simonart.dominique at ...11...> wrote: > >> Le 22/10/2010 16:33, Fabien Bodard a ?crit : >> > 2010/10/22 Demosthenes Koptsis: >> >> i use Gambas 2.21 on Ubuntu 10.04. >> >> >> >> i test the project at 32bit and 64 bit Pcs and produce the same >> behavior >> >> (huge executable) >> >> >> >> this is the project >> >> http://www.mediafire.com/file/0lq893dt8yo02l3/Gambas-AVG-GUI-8.tar.gz >> >> >> >> >> >> 2010/10/22 Beno?t Minisini >> >> >> >>>> On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: >> >>>>>> I created a project with gb.gui. >> >>>>>> >> >>>>>> I changed the components from gb.gui to gb.qt and tried to compile >> >>> the >> >>>>>> project. >> >>>>>> >> >>>>>> The result was to create a name.gambas file 2 Gb and to crash the >> >>> IDE. >> >>>>>> >> >>>>>> When i tried to reopen the project, in order to change the >> components >> >>> i >> >>>>>> get an error message like the attached image. >> >>>>> >> >>>>> Can I have your project (without the 2Gb file of course!) ? >> >>>> >> >>>> Hi i have finished my project about a GUI for AVG Antivirus Linux >> free >> >>>> edition. >> >>>> >> >>>> But i still have problem about creating the executable. >> >>>> When i run compile or compile all, all are perfect. >> >>>> When i run the project with Gambas IDE, all are perfect. >> >>>> But when i run the make executable i get a huge file which increasing >> in >> >>>> Mb for all the time when IDE run. >> >>>> >> >>>> I must kill the Gambas IDE and then delete the huge executable (over >> >>>> 2Gb). >> >>>> >> >>>> Benoit where can i send my project? It is 1,2 Mb >> >>>> >> >>> >> >>> To my private e-mail (don't you see it in your mail client?), or put >> it on >> >>> some server and send me a link to it. >> >>> >> >>> Regards, >> >>> >> >>> -- >> >>> Beno?t Minisini >> >>> >> >>> >> >>> >> ------------------------------------------------------------------------------ >> >>> Nokia and AT&T present the 2010 Calling All Innovators-North America >> >>> contest >> >>> Create new apps& games for the Nokia N8 for consumers in U.S. and >> Canada >> >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >> >>> marketing >> >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi >> Store >> >>> http://p.sf.net/sfu/nokia-dev2dev >> >>> _______________________________________________ >> >>> Gambas-user mailing list >> >>> Gambas-user at lists.sourceforge.net >> >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >> >>> >> >> >> >> >> >> >> >> -- >> >> >> >> ???? ???? ?? ?????!!! >> >> >> >> Regards, >> >> >> >> Demosthenes Koptsis >> >> >> ------------------------------------------------------------------------------ >> >> Nokia and AT&T present the 2010 Calling All Innovators-North America >> contest >> >> Create new apps& games for the Nokia N8 for consumers in U.S. and >> Canada >> >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >> marketing >> >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi >> Store >> >> http://p.sf.net/sfu/nokia-dev2dev >> >> _______________________________________________ >> >> Gambas-user mailing list >> >> Gambas-user at lists.sourceforge.net >> >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> >> >> > >> > where are you saving the executable ? >> > >> >> Hi, >> I remember such a problem long time ago! >> The destination folder was the same as the source one. Each >> time you generate the executable, you integrate the >> preceding executable into the new one.... >> hth >> Dominique Simonart >> >> >> >> >> ------------------------------------------------------------------------------ >> Nokia and AT&T present the 2010 Calling All Innovators-North America >> contest >> Create new apps & games for the Nokia N8 for consumers in U.S. and Canada >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >> marketing >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >> http://p.sf.net/sfu/nokia-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > > > -- > > ???? ???? ?? ?????!!! > > Regards, > > Demosthenes Koptsis > -- ???? ???? ?? ?????!!! Regards, Demosthenes Koptsis From gambas.fr at ...626... Sat Oct 23 18:39:11 2010 From: gambas.fr at ...626... (Fabien Bodard) Date: Sat, 23 Oct 2010 18:39:11 +0200 Subject: [Gambas-user] Huge executable. In-Reply-To: References: <1286221280.25002.5.camel@...2493...> <201010042146.50954.gambas@...1...> <1287745339.4264.5.camel@...2493...> <201010221348.18180.gambas@...1...> <4CC1F21E.9060808@...11...> Message-ID: I think we will forbid to save the executable in the project directory ... can i do that myself Benoit ? 2010/10/23 Demosthenes Koptsis : > oops, sorry. > > the bin directory is in the project directory. > > Simonart you are right! > > This was the problem. > > i saved the executable outside the source directory and all is fine....! > > Thanks. > > On Sat, Oct 23, 2010 at 1:04 AM, Demosthenes Koptsis > wrote: > >> i save is in a directory named "bin" one level up from source directory. >> >> >> On Fri, Oct 22, 2010 at 11:20 PM, Simonart Dominique < >> simonart.dominique at ...11...> wrote: >> >>> Le 22/10/2010 16:33, Fabien Bodard a ?crit : >>> > 2010/10/22 Demosthenes Koptsis: >>> >> i use Gambas 2.21 on Ubuntu 10.04. >>> >> >>> >> i test the project at 32bit and 64 bit Pcs and produce the same >>> behavior >>> >> (huge executable) >>> >> >>> >> this is the project >>> >> http://www.mediafire.com/file/0lq893dt8yo02l3/Gambas-AVG-GUI-8.tar.gz >>> >> >>> >> >>> >> 2010/10/22 Beno?t Minisini >>> >> >>> >>>> On Mon, 2010-10-04 at 21:46 +0200, Beno?t Minisini wrote: >>> >>>>>> I created a project with gb.gui. >>> >>>>>> >>> >>>>>> I changed the components from gb.gui to gb.qt and tried to compile >>> >>> the >>> >>>>>> project. >>> >>>>>> >>> >>>>>> The result was to create a name.gambas file 2 Gb and to crash the >>> >>> IDE. >>> >>>>>> >>> >>>>>> When i tried to reopen the project, in order to change the >>> components >>> >>> i >>> >>>>>> get an error message like the attached image. >>> >>>>> >>> >>>>> Can I have your project (without the 2Gb file of course!) ? >>> >>>> >>> >>>> Hi i have finished my project about a GUI for AVG Antivirus Linux >>> free >>> >>>> edition. >>> >>>> >>> >>>> But i still have problem about creating the executable. >>> >>>> When i run compile or compile all, all are perfect. >>> >>>> When i run the project with Gambas IDE, all are perfect. >>> >>>> But when i run the make executable i get a huge file which increasing >>> in >>> >>>> Mb for all the time when IDE run. >>> >>>> >>> >>>> I must kill the Gambas IDE and then delete the huge executable (over >>> >>>> 2Gb). >>> >>>> >>> >>>> Benoit where can i send my project? It is 1,2 Mb >>> >>>> >>> >>> >>> >>> To my private e-mail (don't you see it in your mail client?), or put >>> it on >>> >>> some server and send me a link to it. >>> >>> >>> >>> Regards, >>> >>> >>> >>> -- >>> >>> Beno?t Minisini >>> >>> >>> >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> >>> Nokia and AT&T present the 2010 Calling All Innovators-North America >>> >>> contest >>> >>> Create new apps& ?games for the Nokia N8 for consumers in ?U.S. and >>> Canada >>> >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >>> >>> marketing >>> >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi >>> Store >>> >>> http://p.sf.net/sfu/nokia-dev2dev >>> >>> _______________________________________________ >>> >>> Gambas-user mailing list >>> >>> Gambas-user at lists.sourceforge.net >>> >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >>> >>> >> >>> >> >>> >> >>> >> -- >>> >> >>> >> ???? ???? ?? ?????!!! >>> >> >>> >> Regards, >>> >> >>> >> Demosthenes Koptsis >>> >> >>> ------------------------------------------------------------------------------ >>> >> Nokia and AT&T present the 2010 Calling All Innovators-North America >>> contest >>> >> Create new apps& ?games for the Nokia N8 for consumers in ?U.S. and >>> Canada >>> >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >>> marketing >>> >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi >>> Store >>> >> http://p.sf.net/sfu/nokia-dev2dev >>> >> _______________________________________________ >>> >> Gambas-user mailing list >>> >> Gambas-user at lists.sourceforge.net >>> >> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >>> > >>> > where are you saving the executable ? >>> > >>> >>> Hi, >>> I remember such a problem long time ago! >>> The destination folder was the same as the source one. Each >>> time you generate the executable, you integrate the >>> preceding executable into the new one.... >>> hth >>> Dominique Simonart >>> >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Nokia and AT&T present the 2010 Calling All Innovators-North America >>> contest >>> Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >>> marketing >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >>> http://p.sf.net/sfu/nokia-dev2dev >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >> >> >> -- >> >> ???? ???? ?? ?????!!! >> >> Regards, >> >> Demosthenes Koptsis >> > > > > -- > > ???? ???? ?? ?????!!! > > Regards, > > Demosthenes Koptsis > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Fabien Bodard From gambas at ...1... Sat Oct 23 22:44:23 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sat, 23 Oct 2010 22:44:23 +0200 Subject: [Gambas-user] Huge executable. In-Reply-To: References: <1286221280.25002.5.camel@...2493...> Message-ID: <201010232244.23696.gambas@...1...> > I think we will forbid to save the executable in the project directory > ... can i do that myself Benoit ? > That's not the solution. You should be able to put the executable anywhere. Of course, putting it inside a project data directory is useless. But you should be able to put it inside the project root. The archiver excludes *.gambas files only if they are put inside the project root directory. So the solution is making the archiver exclude *.gambas files everywhere. Regards, -- Beno?t Minisini From frederic.176 at ...626... Sun Oct 24 04:37:44 2010 From: frederic.176 at ...626... (Federico Leite) Date: Sun, 24 Oct 2010 00:37:44 -0200 Subject: [Gambas-user] The principle of Areida Message-ID: I am a long time developing a web browser. For now, simply use gb.qt4.webkit component, but it does not provide everything you need. In order to test it needs only one command: svn co https://areida.svn.sourceforge.net/svnroot/areida/trunk What do you think? What would you add or taken away? All contributions are welcome. Soon I will focus on managing the project entirely on Sourceforge: http://sourceforge.net/projects/areida/ Regards, -- Federico Leite ############################################## Areida Developer From gambas at ...1... Sun Oct 24 19:11:17 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 24 Oct 2010 19:11:17 +0200 Subject: [Gambas-user] The principle of Areida In-Reply-To: References: Message-ID: <201010241911.17595.gambas@...1...> > I am a long time developing a web browser. For now, simply use > gb.qt4.webkit component, but it does not provide everything you need. In > order to test it needs only one command: > > svn co https://areida.svn.sourceforge.net/svnroot/areida/trunk > > > What do you think? What would you add or taken away? > > All contributions are welcome. Soon I will focus on managing the project > entirely on Sourceforge: > > http://sourceforge.net/projects/areida/ > > Regards, I don't have time at the moment to look at it, but if you need things in the gb.qt4.webkit component, do tell. And, better, if you have C/C++/Qt skills, we can enhance it together! Regards, -- Beno?t Minisini From jussi.lahtinen at ...626... Mon Oct 25 19:42:49 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Mon, 25 Oct 2010 20:42:49 +0300 Subject: [Gambas-user] Bug with transparent pictures Message-ID: Hi! See attachments. Gambas3 rev 3268 @ Ubuntu 10.04 64bit Jussi -------------- next part -------------- A non-text attachment was scrubbed... Name: DrawingAreaBug-0.0.1.tar.gz Type: application/x-gzip Size: 4903 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot-DrawingAreaBug.png Type: image/png Size: 17475 bytes Desc: not available URL: From gambas at ...1... Mon Oct 25 19:48:46 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 25 Oct 2010 19:48:46 +0200 Subject: [Gambas-user] Bug with transparent pictures In-Reply-To: References: Message-ID: <201010251948.46726.gambas@...1...> > Hi! > See attachments. > > Gambas3 rev 3268 @ Ubuntu 10.04 64bit > Jussi This is not a bug. Pictures contents are undefined after it has been created. You must fill it with a background with the Fill() method. Regards, -- Beno?t Minisini From jussi.lahtinen at ...626... Mon Oct 25 20:34:45 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Mon, 25 Oct 2010 21:34:45 +0300 Subject: [Gambas-user] Bug with transparent pictures In-Reply-To: <201010251948.46726.gambas@...1...> References: <201010251948.46726.gambas@...1...> Message-ID: I tried to add line (tmp is picture): tmp.Fill(Color.Transparent) But result is not much better, all I get is white background, not transparent. Jussi 2010/10/25 Beno?t Minisini > > Hi! > > See attachments. > > > > Gambas3 rev 3268 @ Ubuntu 10.04 64bit > > Jussi > > This is not a bug. Pictures contents are undefined after it has been > created. > You must fill it with a background with the Fill() method. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America > contest > Create new apps & games for the Nokia N8 for consumers in U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From nikistar81 at ...626... Mon Oct 25 20:57:17 2010 From: nikistar81 at ...626... (Niki Star) Date: Mon, 25 Oct 2010 21:57:17 +0300 Subject: [Gambas-user] Gambas2: Archlinux/Slackware packages on Ubuntu, how can I make them? Message-ID: Hello dear Gambas devels/users, I use Gambas 2.21 on Ubuntu maverick 10.10 to develop a dual-pane text editor for translators. I want to create installation packages for Archlinux and Slackware, but Gambas displays these messages: Archlinux: 'makepkg' is not installed on your system. Slackware: 'tar-1.13; is not installed on your system. I can't find these packages in my package repositories. How can I get makepkg and tar-1.13 on Ubuntu, without replacing my apt and tar versions? Thanks in advance, Niki Star Developer of Transie CAT: http://transie.sourceforge.net/ From mohareve at ...626... Mon Oct 25 21:47:07 2010 From: mohareve at ...626... (M. Cs.) Date: Mon, 25 Oct 2010 21:47:07 +0200 Subject: [Gambas-user] Gambas2: Archlinux/Slackware packages on Ubuntu, how can I make them? In-Reply-To: References: Message-ID: I think that the makepkg is not available outer the Archlinux itself. For the tar-1.13: 1. Obtain it from here: http://ftp.gnu.org/gnu/tar/ 2. Extract it to a folder 3. Open terminal in the extracted folder and type: ./configure 4. When finished: make 5. When finished: sudo make install 6. When finished: sudo mv /usr/local/bin/tar /usr/local/bin/tar-1.13 7. When finished: sudo ln -s /usr/local/bin/tar-1.13 /usr/bin/tar-1.13 From gambas at ...1... Mon Oct 25 22:09:00 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 25 Oct 2010 22:09:00 +0200 Subject: [Gambas-user] Bug with transparent pictures In-Reply-To: References: <201010251948.46726.gambas@...1...> Message-ID: <201010252209.00372.gambas@...1...> > I tried to add line (tmp is picture): > tmp.Fill(Color.Transparent) > > But result is not much better, all I get is white background, not > transparent. > > Jussi > Pictures have no alpha mask. -- Beno?t Minisini From gambas at ...1... Mon Oct 25 22:10:18 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Mon, 25 Oct 2010 22:10:18 +0200 Subject: [Gambas-user] Gambas2: Archlinux/Slackware packages on Ubuntu, how can I make them? In-Reply-To: References: Message-ID: <201010252210.18604.gambas@...1...> > I think that the makepkg is not available outer the Archlinux itself. > For the tar-1.13: > > 1. Obtain it from here: http://ftp.gnu.org/gnu/tar/ > 2. Extract it to a folder > 3. Open terminal in the extracted folder and type: ./configure > 4. When finished: make > 5. When finished: sudo make install > 6. When finished: sudo mv /usr/local/bin/tar /usr/local/bin/tar-1.13 > 7. When finished: sudo ln -s /usr/local/bin/tar-1.13 /usr/bin/tar-1.13 For tar-1.13, you can fake it by using a symbolic link to tar, and it should work. I don't know why Slackware requires tar-1.13, which nobody uses anymore AFAIK. Regards, -- Beno?t Minisini From jussi.lahtinen at ...626... Mon Oct 25 22:26:31 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Mon, 25 Oct 2010 23:26:31 +0300 Subject: [Gambas-user] Bug with transparent pictures In-Reply-To: <201010252209.00372.gambas@...1...> References: <201010251948.46726.gambas@...1...> <201010252209.00372.gambas@...1...> Message-ID: Hmmm.... I don't understand. I don't need alpha mask, just transparent mask. I need to draw completely opaque text on picture (and arrow). Jussi 2010/10/25 Beno?t Minisini > > I tried to add line (tmp is picture): > > tmp.Fill(Color.Transparent) > > > > But result is not much better, all I get is white background, not > > transparent. > > > > Jussi > > > > Pictures have no alpha mask. > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America > contest > Create new apps & games for the Nokia N8 for consumers in U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From shanep at ...2481... Tue Oct 26 01:12:07 2010 From: shanep at ...2481... (Shane) Date: Tue, 26 Oct 2010 10:12:07 +1100 Subject: [Gambas-user] Toolpanel [Scanned by AINS AntiSpam] Message-ID: <4CC60EC7.6070202@...2481...> Is there a way to increase the height of the toolbars in a toolpanel apart from making the fonts bigger ---------------------------------------------------------- This message has been scanned for viruses and dangerous content by Australia Internet Solutions Pty Ltd, and is believed to be clean. From gambas.fr at ...626... Tue Oct 26 10:34:04 2010 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 26 Oct 2010 10:34:04 +0200 Subject: [Gambas-user] Bug with transparent pictures In-Reply-To: References: <201010251948.46726.gambas@...1...> <201010252209.00372.gambas@...1...> Message-ID: Well i don't know why your are using a picture to draw on a drawing area... but i suspect there a a reason to that :) it work well for me. on the same revision on ubuntu 10.10 64 2010/10/25 Jussi Lahtinen : > Hmmm.... I don't understand. I don't need alpha mask, just transparent mask. > I need to draw completely opaque text on picture (and arrow). > > Jussi > > > 2010/10/25 Beno?t Minisini > >> > I tried to add line (tmp is picture): >> > tmp.Fill(Color.Transparent) >> > >> > But result is not much better, all I get is white background, not >> > transparent. >> > >> > Jussi >> > >> >> Pictures have no alpha mask. >> >> -- >> Beno?t Minisini >> >> >> ------------------------------------------------------------------------------ >> Nokia and AT&T present the 2010 Calling All Innovators-North America >> contest >> Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in >> marketing >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >> http://p.sf.net/sfu/nokia-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Fabien Bodard From rospolosco at ...152... Tue Oct 26 11:03:59 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Tue, 26 Oct 2010 11:03:59 +0200 Subject: [Gambas-user] Gambas2: Archlinux/Slackware packages on Ubuntu, how can I make them? In-Reply-To: <201010252210.18604.gambas@...1...> References: <201010252210.18604.gambas@...1...> Message-ID: <201010261103.59355.rospolosco@...152...> Il luned? 25 ottobre 2010 22:10:18 Beno?t Minisini ha scritto: > > I think that the makepkg is not available outer the Archlinux itself. > > For the tar-1.13: > > > > 1. Obtain it from here: http://ftp.gnu.org/gnu/tar/ > > 2. Extract it to a folder > > 3. Open terminal in the extracted folder and type: ./configure > > 4. When finished: make > > 5. When finished: sudo make install > > 6. When finished: sudo mv /usr/local/bin/tar /usr/local/bin/tar-1.13 > > 7. When finished: sudo ln -s /usr/local/bin/tar-1.13 /usr/bin/tar-1.13 > > For tar-1.13, you can fake it by using a symbolic link to tar, and it > should work. I don't know why Slackware requires tar-1.13, which nobody > uses anymore AFAIK. > > Regards, This is from last Slackware 13.1 source: ftp://elektroni.phys.tut.fi/slackware-13.1/source/a/pkgtools/scripts/makepkg extract: ---------------------------- Written by John Gilmore and Jay Fenlason." ]; then echo "WARNING: pkgtools are unstable with tar > 1.13." echo " You should provide a \"tar-1.13\" in your \$PATH." sleep 5 fi --------------------------- Ciao, Stefano From mohareve at ...626... Tue Oct 26 11:19:59 2010 From: mohareve at ...626... (M. Cs.) Date: Tue, 26 Oct 2010 11:19:59 +0200 Subject: [Gambas-user] Gambas2: Archlinux/Slackware packages on Ubuntu, how can I make them? In-Reply-To: <201010261103.59355.rospolosco@...152...> References: <201010252210.18604.gambas@...1...> <201010261103.59355.rospolosco@...152...> Message-ID: But it isn't written how to install it on Ubuntu. It looks like a description only. From jussi.lahtinen at ...626... Tue Oct 26 21:42:03 2010 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Tue, 26 Oct 2010 22:42:03 +0300 Subject: [Gambas-user] Bug with transparent pictures In-Reply-To: References: <201010251948.46726.gambas@...1...> <201010252209.00372.gambas@...1...> Message-ID: I tested this with virtual ubuntu (10.04 64bit with VirtualBox), and it didn't work. But this works with GTK+, with both virtual and host OS. Any clue what might be wrong? Is there any Qt configs etc which might be mangled? Jussi On Tue, Oct 26, 2010 at 11:34, Fabien Bodard wrote: > Well i don't know why your are using a picture to draw on a drawing > area... but i suspect there a a reason to that :) > > it work well for me. on the same revision on ubuntu 10.10 64 > > 2010/10/25 Jussi Lahtinen : > > Hmmm.... I don't understand. I don't need alpha mask, just transparent > mask. > > I need to draw completely opaque text on picture (and arrow). > > > > Jussi > > > > > > 2010/10/25 Beno?t Minisini > > > >> > I tried to add line (tmp is picture): > >> > tmp.Fill(Color.Transparent) > >> > > >> > But result is not much better, all I get is white background, not > >> > transparent. > >> > > >> > Jussi > >> > > >> > >> Pictures have no alpha mask. > >> > >> -- > >> Beno?t Minisini > >> > >> > >> > ------------------------------------------------------------------------------ > >> Nokia and AT&T present the 2010 Calling All Innovators-North America > >> contest > >> Create new apps & games for the Nokia N8 for consumers in U.S. and > Canada > >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > >> marketing > >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > >> http://p.sf.net/sfu/nokia-dev2dev > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > >> > > > ------------------------------------------------------------------------------ > > Nokia and AT&T present the 2010 Calling All Innovators-North America > contest > > Create new apps & games for the Nokia N8 for consumers in U.S. and > Canada > > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > marketing > > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > > http://p.sf.net/sfu/nokia-dev2dev > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > -- > Fabien Bodard > > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America > contest > Create new apps & games for the Nokia N8 for consumers in U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in > marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Thu Oct 28 18:24:17 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Thu, 28 Oct 2010 18:24:17 +0200 Subject: [Gambas-user] About Gambas 2 deprecation Message-ID: <201010281824.24217.gambas@...1...> Hi, I had badly expressed myself when I said that Gambas 2 will be deprecated before the end of the year. What I meant is: 1) I want to / will release the first release candidate of Gambas 3 before the end of the year. 2) Then I will stop working of Gambas 2. But nobody will prevent anyone to use its last version and/or fixing bugs in it (it is free software). That has already began: it is a slow process, and it is just a consequence of my limited free time. I am currently busy with theatre and project releases in my job. Normally, things will be cooler next week, and I will be able to start working on Gambas again. Best regards to everyone. -- Beno?t Minisini From gambas.fr at ...626... Thu Oct 28 18:39:33 2010 From: gambas.fr at ...626... (Fabien Bodard) Date: Thu, 28 Oct 2010 18:39:33 +0200 Subject: [Gambas-user] About Gambas 2 deprecation In-Reply-To: <201010281824.24217.gambas@...1...> References: <201010281824.24217.gambas@...1...> Message-ID: Le 28 octobre 2010 18:24, Beno?t Minisini a ?crit : > Hi, > > I had badly expressed myself when I said that Gambas 2 will be deprecated > before the end of the year. > > What I meant is: > > 1) I want to / will release the first release candidate of Gambas 3 before the > end of the year. > > 2) Then I will stop working of Gambas 2. But nobody will prevent anyone to use > its last version and/or fixing bugs in it (it is free software). > > That has already began: it is a slow process, and it is just a consequence of > my limited free time. > > I am currently busy with theatre and project releases in my job. Normally, > things will be cooler next week, and I will be able to start working on Gambas > again. > > Best regards to everyone. Just like it was at the beginning of gambas 2... , Gambas have been in use for years after the gb2 release :) > -- > Beno?t Minisini > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Fabien Bodard From robert1juhasz at ...626... Thu Oct 28 22:37:36 2010 From: robert1juhasz at ...626... (Robert JUHASZ) Date: Thu, 28 Oct 2010 22:37:36 +0200 Subject: [Gambas-user] About Gambas 2 deprecation In-Reply-To: <201010281824.24217.gambas@...1...> References: <201010281824.24217.gambas@...1...> Message-ID: Benoit, I haven't tried gb3. Will the code written in gb2 work in gb3? Robi 2010/10/28 Beno?t Minisini : > Hi, > > I had badly expressed myself when I said that Gambas 2 will be deprecated > before the end of the year. > > What I meant is: > > 1) I want to / will release the first release candidate of Gambas 3 before the > end of the year. > > 2) Then I will stop working of Gambas 2. But nobody will prevent anyone to use > its last version and/or fixing bugs in it (it is free software). > > That has already began: it is a slow process, and it is just a consequence of > my limited free time. > > I am currently busy with theatre and project releases in my job. Normally, > things will be cooler next week, and I will be able to start working on Gambas > again. > > Best regards to everyone. > > -- > Beno?t Minisini > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From dr.diesel at ...626... Thu Oct 28 22:57:34 2010 From: dr.diesel at ...626... (Dr.Diesel) Date: Thu, 28 Oct 2010 13:57:34 -0700 (PDT) Subject: [Gambas-user] About Gambas 2 deprecation In-Reply-To: <201010281824.24217.gambas@...1...> References: <201010281824.24217.gambas@...1...> Message-ID: <30079642.post@...1379...> Beno?t Minisini wrote: > > Hi, > > I had badly expressed myself when I said that Gambas 2 will be deprecated > before the end of the year. > > What I meant is: > > 1) I want to / will release the first release candidate of Gambas 3 before > the > end of the year. > > 2) Then I will stop working of Gambas 2. But nobody will prevent anyone to > use > its last version and/or fixing bugs in it (it is free software). > > That has already began: it is a slow process, and it is just a consequence > of > my limited free time. > > I am currently busy with theatre and project releases in my job. Normally, > things will be cooler next week, and I will be able to start working on > Gambas > again. > > Best regards to everyone. > > -- > Beno?t Minisini > > Thank you for all your hard work. We patiently await the release of Gambas3! Andy -- View this message in context: http://old.nabble.com/About-Gambas-2-deprecation-tp30078403p30079642.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas.fr at ...626... Fri Oct 29 08:28:31 2010 From: gambas.fr at ...626... (Fabien Bodard) Date: Fri, 29 Oct 2010 08:28:31 +0200 Subject: [Gambas-user] About Gambas 2 deprecation In-Reply-To: References: <201010281824.24217.gambas@...1...> Message-ID: 2010/10/28 Robert JUHASZ : > Benoit, > > I haven't tried gb3. Will the code written in gb2 work in gb3? In gb3 a converter gb2 to gb3 is on the way... so during the next year this tool is going to grow to solve the most problem as possible, in the convertion. Many part of the gb2 code are similar to the gb3, But there is some component that have been removed (gb.qt/gb.kde) replaced by new mone (gb.qt4, gb.qt4.webkit) and some code change in the syntax. But don't worry ... you have time. > > Robi > > 2010/10/28 Beno?t Minisini : >> Hi, >> >> I had badly expressed myself when I said that Gambas 2 will be deprecated >> before the end of the year. >> >> What I meant is: >> >> 1) I want to / will release the first release candidate of Gambas 3 before the >> end of the year. >> >> 2) Then I will stop working of Gambas 2. But nobody will prevent anyone to use >> its last version and/or fixing bugs in it (it is free software). >> >> That has already began: it is a slow process, and it is just a consequence of >> my limited free time. >> >> I am currently busy with theatre and project releases in my job. Normally, >> things will be cooler next week, and I will be able to start working on Gambas >> again. >> >> Best regards to everyone. >> >> -- >> Beno?t Minisini >> >> ------------------------------------------------------------------------------ >> Nokia and AT&T present the 2010 Calling All Innovators-North America contest >> Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada >> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing >> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >> http://p.sf.net/sfu/nokia-dev2dev >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps & games for the Nokia N8 for consumers in ?U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Fabien Bodard From rospolosco at ...152... Sat Oct 30 02:37:14 2010 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 30 Oct 2010 02:37:14 +0200 Subject: [Gambas-user] Desktop.Open slows application Message-ID: <201010300237.15201.rospolosco@...152...> Hi, Benoit. I download a file and I want to have a preview while downloading. While downloading, a progress value is updated every second or so. If I use Desktop.Open(URL) to preview the file, the progress value is blocked until the Desktop default application starts playing the file. In this case I talk about amarok. But if I use a SHELL call instedad of Desktop.Open(URL) everything is fine and the progress is not blocked. I would like Desktop.Open would work as a shell call or exec with no WAIT at all. Is it possible? Something like: Desktop.Open(URL, False) if you don't want to wait that starting. finally: SHELL "amarok -a -p " & URL doesn't stop anything Desktop.Open(URL) pauses the program, I mean the progress update. Regards, Stefano From bbruen at ...2308... Sun Oct 31 09:42:32 2010 From: bbruen at ...2308... (Bruce Bruen) Date: Sun, 31 Oct 2010 19:12:32 +1030 Subject: [Gambas-user] Subsetting a collection & clipboarding Message-ID: <201010311912.34155.bbruen@...2308...> Hi folks, I have a class "A" that has as one of its' properties ,"b", a collection of objects (of type "C"). I wish to a) provide a (READ) property in A that returns a subset of the collection (b') based on a parameter (relating to a known property of C, say something like "DaysAgo is less than 45" where DaysAgo is a property of C), and b) copy all attributes of each instance of C in b' onto a new clipboard item. To confound the issue, the DaysAgo property of C is computed and is relative to another date that is independent of both A and C. Or to put that another way, I suppose I need a window function, rather than a subsetting function that will return each instance of C in b that is between a basedate and a number of days beforehand. To try and put this into a better perspective, we have a patient "Ms Sally Simpson" who was diagnosed in early August as suffering from infectious mononucleosis (aka glandular fever, college disease, kissing disease etc etc). She has had a series of pathology tests done over the last 6 months when she first presented ("Doctor, I dont feel well"). The blood samples take from her over this period may have been subjected to over 150 odd pathology tests. My learned pathological statisticians ( sorry pathology statisticians) now want to select specific examples of certain tests to see if there is any evidence of atypical results being "ahem, missed" in the earlier tests. So, class A(patient) (instance "Simpson, Sally") has a collection b of path tests generalised as a "test" (C) (with many specialisations). The requirement put to me is "I want to copy all the data for the IG Count tests done on Sally in the period between 2 Aug and 45 days prior to the clipboard (so I can paste them into a spreadsheet and do mystical incantations over them)" (OK, I added the last bit.) To me this requires subsetting b over testtype between two parameters (day0 and daysago) So, is there a way to provide a "parameterised" property accessor, TestSeries_Read(ttype as TestTypeCode, startdate as Date, window as Integer) as TestSeries and when I get it, how do I copy all attributes of each instance in the subset to the clipboard (i.e. how can I serialise a specialisation of a generic type). If you have read this far, thank you. If you can provide some help, may you be blessed. -- best regards Bruce Bruen From wdahn at ...1000... Sun Oct 31 11:32:53 2010 From: wdahn at ...1000... (Werner) Date: Sun, 31 Oct 2010 18:32:53 +0800 Subject: [Gambas-user] Subsetting a collection & clipboarding In-Reply-To: <201010311912.34155.bbruen@...2308...> References: <201010311912.34155.bbruen@...2308...> Message-ID: <4CCD45D5.2070001@...1000...> On 31/10/10 16:42, Bruce Bruen wrote: > Hi folks, > > I have a class "A" that has as one of its' properties ,"b", a collection of > objects (of type "C"). I wish to > a) provide a (READ) property in A that returns a subset of the collection (b') > based on a parameter (relating to a known property of C, say something like > "DaysAgo is less than 45" where DaysAgo is a property of C), and > b) copy all attributes of each instance of C in b' onto a new clipboard item. > > To confound the issue, the DaysAgo property of C is computed and is relative > to another date that is independent of both A and C. Or to put that another > way, I suppose I need a window function, rather than a subsetting function > that will return each instance of C in b that is between a basedate and a > number of days beforehand. > > To try and put this into a better perspective, we have a patient "Ms Sally > Simpson" who was diagnosed in early August as suffering from infectious > mononucleosis (aka glandular fever, college disease, kissing disease etc etc). > She has had a series of pathology tests done over the last 6 months when she > first presented ("Doctor, I dont feel well"). The blood samples take from her > over this period may have been subjected to over 150 odd pathology tests. My > learned pathological statisticians ( sorry pathology statisticians) now want > to select specific examples of certain tests to see if there is any evidence > of atypical results being "ahem, missed" in the earlier tests. > > So, class A(patient) (instance "Simpson, Sally") has a collection b of path > tests generalised as a "test" (C) (with many specialisations). The > requirement put to me is "I want to copy all the data for the IG Count tests > done on Sally in the period between 2 Aug and 45 days prior to the clipboard > (so I can paste them into a spreadsheet and do mystical incantations over > them)" > > (OK, I added the last bit.) > > To me this requires subsetting b over testtype between two parameters (day0 > and daysago) > > So, is there a way to provide a "parameterised" property accessor, > TestSeries_Read(ttype as TestTypeCode, startdate as Date, window as Integer) > as TestSeries > and when I get it, how do I copy all attributes of each instance in the subset > to the clipboard (i.e. how can I serialise a specialisation of a generic > type). > > If you have read this far, thank you. > If you can provide some help, may you be blessed. > I don't think there is any reason why you can't write in your class: Function TestSeries_Read(patient_id as Integer, ttype as TestTypeCode, startdate as Date, window as Integer) AS String[] ... do your magic here End However, obviously your data must be persistent so this shouts loudly: DATABASE! Apart from persistence it also makes it easier to retrieve the measurements for a patient over a time range and/or test type. You can then slap the retrieved data into a component designed for that purpose. These are documented here: http://gambasdoc.org/help/comp/gb.db.form Propably you would want to use a DataView. The user can then play with it (ie "show me when Bilirubin was highest") or copy from the DataView into the Clipboard. ------------------ A few more thoughts: What you don't mention is how the measurements are supposed to become available to your application. Manual entry? If this is an application for clinical medicine (non research) and you expect a lot of data over time which needs to be archived properly it might be worthwhile to take a closer look at the DICOM standard. Just my 0.02 HK$. Regards Werner From gambas at ...1... Sun Oct 31 20:38:53 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 31 Oct 2010 20:38:53 +0100 Subject: [Gambas-user] Under construction or bug? In-Reply-To: References: Message-ID: <201010312038.53195.gambas@...1...> > Help line feature seems not to work correctly with recent revision. > If I type: > Dim test as someclass > > test.somevariabl... I always get "No help found". > > Gambas 3 rev 3265 @Ubuntu 10.04 64bit > > Jussi Can you make a little project example for me that shows what the problem is? -- Beno?t Minisini From gambas at ...1... Sun Oct 31 23:06:06 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 31 Oct 2010 23:06:06 +0100 Subject: [Gambas-user] Huge executable. In-Reply-To: <201010232244.23696.gambas@...1...> References: <1286221280.25002.5.camel@...2493...> <201010232244.23696.gambas@...1...> Message-ID: <201010312306.06403.gambas@...1...> > > I think we will forbid to save the executable in the project directory > > ... can i do that myself Benoit ? > > That's not the solution. You should be able to put the executable anywhere. > Of course, putting it inside a project data directory is useless. But you > should be able to put it inside the project root. > > The archiver excludes *.gambas files only if they are put inside the > project root directory. So the solution is making the archiver exclude > *.gambas files everywhere. > > Regards, The huge executable bug has been fixed in revision #3272 for Gambas 3. -- Beno?t Minisini From gambas at ...1... Sun Oct 31 23:28:26 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 31 Oct 2010 23:28:26 +0100 Subject: [Gambas-user] Huge executable. In-Reply-To: <201010312306.06403.gambas@...1...> References: <1286221280.25002.5.camel@...2493...> <201010232244.23696.gambas@...1...> <201010312306.06403.gambas@...1...> Message-ID: <201010312328.26282.gambas@...1...> > > > I think we will forbid to save the executable in the project directory > > > ... can i do that myself Benoit ? > > > > That's not the solution. You should be able to put the executable > > anywhere. Of course, putting it inside a project data directory is > > useless. But you should be able to put it inside the project root. > > > > The archiver excludes *.gambas files only if they are put inside the > > project root directory. So the solution is making the archiver exclude > > *.gambas files everywhere. > > > > Regards, > > The huge executable bug has been fixed in revision #3272 for Gambas 3. ...and in revision #3273 for Gambas 2. Regards, -- Beno?t Minisini