From olinux at ...289... Sat Nov 1 13:20:19 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 1 Nov 2003 13:20:19 +0100 Subject: [Gambas-user] Annoucement Stratoria - Gestion Commerciale Message-ID: <200311011320.19894.olinux@...289...> I'm enjoy to Announce you the start of Stratoria - Gestion Commerciale Project completely wrote with Gambas, this Commerciale Gestion programme is a client-server application -Mysql based - grafical interface - help and documentation in one click - GPL licence First Beta previewed : december 2003 (v 0.0.xx) First Stable Release previewed: February 2004 (v 0.1.0) Features (preview): - Multi soci?t?s - Facturation - Gestion sous traitance - Gestion des r?glements - Gestion des actions commerciales clients - Gestion Par dossiers - Exportation comptable (ligne 100 Sage) All sources will be disponibles before 01/12/2003 an internet site will be online in 2 or three weeks regards From France Olivier Coquet Strat&Co From olinux at ...289... Sat Nov 1 15:17:28 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 1 Nov 2003 15:17:28 +0100 Subject: [Gambas-user] My first question how to access a public sub in another class??? Message-ID: <200311011517.28530.olinux@...289...> hi all ! for exemple: I have a form with a text label with "test" in text property i open a second form i want to change the text label text property of the first form from this second form. for instance i have made i have made a STATIC PUBLIC variable named texttest in my first form class (named firstform) and a PUBLIC SUB changelabel() I modify texttest static public variable in my second form (named secondform) i try to call : firstform.changelabel() but interpreter say me " changelabel() must be static" at runtime ????? if i make changelabel() as static, i can't acces any control property...... a solution?????? thanks in advance Olivier From gambas at ...2... Sat Nov 1 17:50:50 2003 From: gambas at ...2... (Benoit Minisini) Date: Sat, 1 Nov 2003 17:50:50 +0100 Subject: [Gambas-user] My first question how to access a public sub in another class??? In-Reply-To: <200311011517.28530.olinux@...289...> References: <200311011517.28530.olinux@...289...> Message-ID: <200311011750.50772.gambas@...2...> Le Samedi 1 Novembre 2003 15:17, Olivier Coquet a ?crit : > hi all ! > for exemple: > > I have a form with a text label with "test" in text property > > i open a second form > > i want to change the text label text property of the first form from this > second form. > > for instance i have made > > i have made a STATIC PUBLIC variable named texttest in my first form class > (named firstform) > > and a PUBLIC SUB changelabel() > > I modify texttest static public variable in my second form (named > secondform) i try to call : > firstform.changelabel() > > but interpreter say me " changelabel() must be static" at runtime ????? > > if i make changelabel() as static, i can't acces any control property...... > > a solution?????? > > thanks in advance > Olivier > > Contrary to VB, forms are not self-instanciable. If the name of your form class is "MyForm", it doesn't mean that you have an instance of this form with the same name like in VB. You must instanciate MyForm, and put the resulting reference in a global variable. For example: In MyForm: STATIC PUBLIC Handle AS MyForm ... Handle = NEW MyForm ... MyDialog.Dialog ... PUBLIC SUB ChangeLabel() ... END In MyDialog: ... MyForm.Handle.ChangeLabel ... Is it clearer ? -- Benoit Minisini mailto:gambas at ...1... From olinux at ...289... Sat Nov 1 19:11:44 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 1 Nov 2003 19:11:44 +0100 Subject: [Gambas-user] My first question how to access a public sub in another class??? In-Reply-To: <200311011750.50772.gambas@...2...> References: <200311011517.28530.olinux@...289...> <200311011750.50772.gambas@...2...> Message-ID: <200311011911.44884.olinux@...289...> Le Samedi 01 Novembre 2003 17:50, Benoit Minisini a ?crit : > Contrary to VB, forms are not self-instanciable. If the name of your form > class is "MyForm", it doesn't mean that you have an instance of this form > with the same name like in VB. > > You must instanciate MyForm, and put the resulting reference in a global > variable. > > For example: > > In MyForm: > > STATIC PUBLIC Handle AS MyForm > ... > Handle = NEW MyForm > ... > MyDialog.Dialog > ... > PUBLIC SUB ChangeLabel() > ... > END > > In MyDialog: > ... > MyForm.Handle.ChangeLabel > ... > > Is it clearer ? heuuuuuu...yes but In PARIS at this time, we are drinking vine for Halloween and the vine is not a garanty ao clarity of my spirit :=) I re-read this tomorow and I try to understant ..... Thanks for answer. PS: just a question, in Gambas when i start MyForm, I found NoWhere to instance it in static mode, all is automatic (i think). Regards of France Olivier From olinux at ...289... Sat Nov 1 19:43:35 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 1 Nov 2003 19:43:35 +0100 Subject: [Gambas-user] My first question how to access a public sub in another class??? In-Reply-To: <200311011750.50772.gambas@...2...> References: <200311011517.28530.olinux@...289...> <200311011750.50772.gambas@...2...> Message-ID: <200311011943.36009.olinux@...289...> Le Samedi 01 Novembre 2003 17:50, Benoit Minisini a ?crit : > Contrary to VB, forms are not self-instanciable. If the name of your form > class is "MyForm", it doesn't mean that you have an instance of this form > with the same name like in VB. i've understand.... > You must instanciate MyForm, and put the resulting reference in a global > variable. > > For example: > > In MyForm: I put this in Start which is my start class > STATIC PUBLIC Handle AS MyForm ok just before any sub, an before the static public sub main > ... > Handle = NEW MyForm ok in the static public sub main() > MyDialog.Dialog ok > PUBLIC SUB ChangeLabel() > ... > END ok > In MyDialog: > ... > MyForm.Handle.ChangeLabel ok Start.Handle.ChangeLabel() it compile with no error But..... when I click on the button who launch the Start.Handle.Changelabel().....nothing !!!!!!! > > Is it clearer ? hummmmmmm Olivier From gambas at ...2... Sun Nov 2 11:30:52 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 2 Nov 2003 11:30:52 +0100 Subject: [Gambas-user] gambas 0.71 Message-ID: <200311021130.52945.gambas@...2...> Hi, Gambas users, After a long period of two months, here is gambas 0.71. There are many bug fixes in this version, and many incompatible changes in the Key class and the Process class, so read the Changelog carefully ! The network component of Daniel Campos will be integrated in the next version. Here is a list of the problems I want to fix before the 1.0 release: 1) Clean up the 'introspection' mechanism, i.e. the Symbol, Class and Component classes. 2) Try to solve the problem with EXEC/SHELL ... WAIT that do not call the event loop. This needs a GLibc function that exists, but that relies on a missing Linux system call ! For those interested, type 'man pselect'. 3) Having a better image processing class: at the moment, you can access pixels, replace colored pixels by transparent pixels, flip, stretch or rotate an image. I'd like to have more powerful functions and a more beautiful interface to this functions :-) 4) I'd like to be sure that gambas install and run correctly on all Linux distributions, so don't hesitate to tell me when you can't do that with your distribution, or when you can, so that I know. I have only a Mandrake 9.2 at home, no VMWare yet ! 5) At the moment, you need to call Conv$() to convert Desktop.Charset to System.Charset, and it is boring. For example, if you type a file name with non-ASCII characters in your source code, then it is stored as UTF-8 character. If you want to open this file with OPEN, you need to convert the file name to System.Charset (ISO-8859-15 on my Mandrake) before. This is not needed on systems like RedHat that use UTF-8 everywhere. Maybe I should simulate UTF-8 file system internally in the interpreter, i.e. do the conversion automatically ? 6) Integrating cleanly the Daniel Campos' network component. 7) Having an updated documentation on the Wiki made by Rob. I hope this will come soon ;-) And, of course, if you see other important points, tell them on this mailing-list ! I have very little time at the moment, but I try to work on gambas as frequently as possible. There is no many pending problems for the 1.0, so I'm confident :-) Regards, -- Benoit Minisini mailto:gambas at ...1... From eng_ak at ...200... Sun Nov 2 11:56:43 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Sun, 02 Nov 2003 12:56:43 +0200 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021130.52945.gambas@...2...> References: <200311021130.52945.gambas@...2...> Message-ID: <3FA4E2EB.8060108@...200...> > 4) I'd like to be sure that gambas install and run correctly on all Linux > distributions, so don't hesitate to tell me when you can't do that with your > distribution, or when you can, so that I know. I have only a Mandrake 9.2 at > home, no VMWare yet ! > Does this include RH9 without updating QT? From olinux at ...289... Sun Nov 2 12:17:30 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 2 Nov 2003 12:17:30 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021130.52945.gambas@...2...> References: <200311021130.52945.gambas@...2...> Message-ID: <200311021217.30999.olinux@...289...> Le Dimanche 02 Novembre 2003 11:30, Benoit Minisini a ?crit : > Hi, Gambas users, [.....] > I have very little time at the moment, but I try to work on gambas as > frequently as possible. There is no many pending problems for the 1.0, so > I'm confident :-) > > Regards, not work for me, RH9 with QT upgraded 0.70 compile ok 0.71 not compile here is the make final msg result: ---- creating lib.gb.qt.la (cd .libs && rm -f lib.gb.qt.la && ln -s ../lib.gb.qt.la lib.gb.qt.la) make[5]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/qt' make[4]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/qt' Making all in sdl make[4]: Entre dans le r?pertoire `/home/olinux/gambas/src/lib/sdl' make[4]: *** Pas de r?gle pour fabriquer la cible `all'. Arr?t. make[4]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/sdl' make[3]: *** [all-recursive] Erreur 1 make[3]: Quitte le r?pertoire `/home/olinux/gambas/src/lib' make[2]: *** [all-recursive] Erreur 1 make[2]: Quitte le r?pertoire `/home/olinux/gambas/src' make[1]: *** [all-recursive] Erreur 1 make[1]: Quitte le r?pertoire `/home/olinux/gambas' make: *** [all-recursive-am] Erreur 2 ------ Regards Olivier From olinux at ...289... Sun Nov 2 12:21:40 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 2 Nov 2003 12:21:40 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021217.30999.olinux@...289...> References: <200311021130.52945.gambas@...2...> <200311021217.30999.olinux@...289...> Message-ID: <200311021221.40259.olinux@...289...> Le Dimanche 02 Novembre 2003 12:17, Olivier Coquet a ?crit : > Le Dimanche 02 Novembre 2003 11:30, Benoit Minisini a ?crit : here is the ./configure msg result after a ./reconf action..... ----- ..... config.status: creating src/lib/qt/editor/Makefile config.status: creating src/lib/qt/ext/Makefile config.status: creating src/lib/qt/kde/Makefile config.status: creating src/lib/db/Makefile config.status: creating src/lib/db/mysql/Makefile config.status: creating src/lib/db/postgresql/Makefile config.status: creating src/lib/sdl/Makefile config.status: error: cannot find input file: src/lib/sdl/Makefile.in ------- Regards Olivier From gambas at ...2... Sun Nov 2 12:33:49 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 2 Nov 2003 12:33:49 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <3FA4E2EB.8060108@...200...> References: <200311021130.52945.gambas@...2...> <3FA4E2EB.8060108@...200...> Message-ID: <200311021233.49323.gambas@...2...> Le Dimanche 2 Novembre 2003 11:56, Ahmad Kamal a ?crit : > > 4) I'd like to be sure that gambas install and run correctly on all Linux > > distributions, so don't hesitate to tell me when you can't do that with > > your distribution, or when you can, so that I know. I have only a > > Mandrake 9.2 at home, no VMWare yet ! > > Does this include RH9 without updating QT? > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user No, because I won't provide updated QT libraries in gambas source packages. -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Sun Nov 2 12:42:21 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 2 Nov 2003 12:42:21 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021221.40259.olinux@...289...> References: <200311021130.52945.gambas@...2...> <200311021217.30999.olinux@...289...> <200311021221.40259.olinux@...289...> Message-ID: <200311021242.21923.gambas@...2...> Le Dimanche 2 Novembre 2003 12:21, Olivier Coquet a ?crit : > Le Dimanche 02 Novembre 2003 12:17, Olivier Coquet a ?crit : > > Le Dimanche 02 Novembre 2003 11:30, Benoit Minisini a ?crit : > > here is the ./configure msg result after a ./reconf action..... > ----- > ..... > config.status: creating src/lib/qt/editor/Makefile > config.status: creating src/lib/qt/ext/Makefile > config.status: creating src/lib/qt/kde/Makefile > config.status: creating src/lib/db/Makefile > config.status: creating src/lib/db/mysql/Makefile > config.status: creating src/lib/db/postgresql/Makefile > config.status: creating src/lib/sdl/Makefile > config.status: error: cannot find input file: src/lib/sdl/Makefile.in > > ------- > > Regards > Olivier > Oops, I'm sorry, I forgot to install SDL on my freshly installed Mandrake 9.2... So the package is corrupted. As a workaround, remove the SDL developer package, or rename the SDL.h file and reconfigure. I will post an updated package as soon as possible. -- Benoit Minisini mailto:gambas at ...1... From olinux at ...289... Sun Nov 2 12:50:11 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 2 Nov 2003 12:50:11 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021242.21923.gambas@...2...> References: <200311021130.52945.gambas@...2...> <200311021221.40259.olinux@...289...> <200311021242.21923.gambas@...2...> Message-ID: <200311021250.11737.olinux@...289...> Le Dimanche 02 Novembre 2003 12:42, Benoit Minisini a ?crit : > Oops, I'm sorry, I forgot to install SDL on my freshly installed Mandrake > 9.2... So the package is corrupted. > > As a workaround, remove the SDL developer package, or rename the SDL.h file > and reconfigure. > > I will post an updated package as soon as possible. ok lol i've copied the sdl folder from the 0.70 and it work :=) ?tourdi ! regards from france Olivier From gambas at ...2... Sun Nov 2 12:51:43 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 2 Nov 2003 12:51:43 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021217.30999.olinux@...289...> References: <200311021130.52945.gambas@...2...> <200311021217.30999.olinux@...289...> Message-ID: <200311021251.43676.gambas@...2...> Le Dimanche 2 Novembre 2003 12:17, Olivier Coquet a ?crit : > Le Dimanche 02 Novembre 2003 11:30, Benoit Minisini a ?crit : > > Hi, Gambas users, > > [.....] > > > I have very little time at the moment, but I try to work on gambas as > > frequently as possible. There is no many pending problems for the 1.0, so > > I'm confident :-) > > > > Regards, > > not work for me, RH9 with QT upgraded > > 0.70 compile ok > 0.71 not compile > > here is the make final msg result: > ---- > creating lib.gb.qt.la > (cd .libs && rm -f lib.gb.qt.la && ln -s ../lib.gb.qt.la lib.gb.qt.la) > make[5]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/qt' > make[4]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/qt' > Making all in sdl > make[4]: Entre dans le r?pertoire `/home/olinux/gambas/src/lib/sdl' > make[4]: *** Pas de r?gle pour fabriquer la cible `all'. Arr?t. > make[4]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/sdl' > make[3]: *** [all-recursive] Erreur 1 > make[3]: Quitte le r?pertoire `/home/olinux/gambas/src/lib' > make[2]: *** [all-recursive] Erreur 1 > make[2]: Quitte le r?pertoire `/home/olinux/gambas/src' > make[1]: *** [all-recursive] Erreur 1 > make[1]: Quitte le r?pertoire `/home/olinux/gambas' > make: *** [all-recursive-am] Erreur 2 > > ------ > > Regards > Olivier > I have just downloaded an updated 0.71 package. I Hope this one works now ! Regards, -- Benoit Minisini mailto:gambas at ...1... From girardhenri at ...67... Sun Nov 2 13:04:33 2003 From: girardhenri at ...67... (Henri Girard) Date: Sun, 2 Nov 2003 13:04:33 +0100 Subject: [Gambas-user] gambas 0.71 References: <200311021130.52945.gambas@...2...> <200311021217.30999.olinux@...289...> <200311021251.43676.gambas@...2...> Message-ID: where did you get the m9.2 from ? KR HG ----- Original Message ----- From: "Benoit Minisini" To: Sent: Sunday, November 02, 2003 12:51 PM Subject: Re: [Gambas-user] gambas 0.71 Le Dimanche 2 Novembre 2003 12:17, Olivier Coquet a ?crit : > Le Dimanche 02 Novembre 2003 11:30, Benoit Minisini a ?crit : > > Hi, Gambas users, > > [.....] > > > I have very little time at the moment, but I try to work on gambas as > > frequently as possible. There is no many pending problems for the 1.0, so > > I'm confident :-) > > > > Regards, > > not work for me, RH9 with QT upgraded > > 0.70 compile ok > 0.71 not compile > > here is the make final msg result: > ---- > creating lib.gb.qt.la > (cd .libs && rm -f lib.gb.qt.la && ln -s ../lib.gb.qt.la lib.gb.qt.la) > make[5]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/qt' > make[4]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/qt' > Making all in sdl > make[4]: Entre dans le r?pertoire `/home/olinux/gambas/src/lib/sdl' > make[4]: *** Pas de r?gle pour fabriquer la cible `all'. Arr?t. > make[4]: Quitte le r?pertoire `/home/olinux/gambas/src/lib/sdl' > make[3]: *** [all-recursive] Erreur 1 > make[3]: Quitte le r?pertoire `/home/olinux/gambas/src/lib' > make[2]: *** [all-recursive] Erreur 1 > make[2]: Quitte le r?pertoire `/home/olinux/gambas/src' > make[1]: *** [all-recursive] Erreur 1 > make[1]: Quitte le r?pertoire `/home/olinux/gambas' > make: *** [all-recursive-am] Erreur 2 > > ------ > > Regards > Olivier > I have just downloaded an updated 0.71 package. I Hope this one works now ! Regards, -- Benoit Minisini mailto:gambas at ...1... ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...2... Sun Nov 2 13:15:11 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 2 Nov 2003 13:15:11 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: References: <200311021130.52945.gambas@...2...> <200311021251.43676.gambas@...2...> Message-ID: <200311021315.11325.gambas@...2...> Le Dimanche 2 Novembre 2003 13:04, Henri Girard a ?crit : > where did you get the m9.2 from ? > KR > HG From olinux at ...289... Sun Nov 2 13:21:43 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 2 Nov 2003 13:21:43 +0100 Subject: [Gambas-user] Realy simple question but hard to explain..... In-Reply-To: References: <200311021130.52945.gambas@...2...> <200311021251.43676.gambas@...2...> Message-ID: <200311021321.43798.olinux@...289...> here is the problem: i have two form named F1 and F2, F1 is the starting form here is the code for F1: ' Gambas class file STATIC PUBLIC valvar AS String PUBLIC SUB Button1_Click() END Here is the code for F2: ' Gambas class file PUBLIC SUB Button1_Click() F1.valvar = "un test" END Here is the compile message error: Unknown identifier: F1 at line 5 in F2.Class (<=== transcript from French) what is wrong?????????? thanks for your answer i'm blocked since yesterday with this "very" hard problem :=) Olivier PS for Benoit Tout fonctionne bien avec RH9 et QT ? jour pour la 0.71 :=) From olinux at ...289... Sun Nov 2 13:40:02 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 2 Nov 2003 13:40:02 +0100 Subject: [Gambas-user] Sorry but i'm lokace :=) In-Reply-To: <200311021321.43798.olinux@...289...> References: <200311021130.52945.gambas@...2...> <200311021321.43798.olinux@...289...> Message-ID: <200311021340.02952.olinux@...289...> Bug in Menu Handling: if a menu Group is named with a space in it, this genrate a syntax error in the sub created.... Regards From France Olivier From gambas at ...2... Sun Nov 2 13:46:12 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 2 Nov 2003 13:46:12 +0100 Subject: [Gambas-user] Sorry but i'm lokace :=) In-Reply-To: <200311021340.02952.olinux@...289...> References: <200311021130.52945.gambas@...2...> <200311021321.43798.olinux@...289...> <200311021340.02952.olinux@...289...> Message-ID: <200311021346.12334.gambas@...2...> Le Dimanche 2 Novembre 2003 13:40, Olivier Coquet a ?crit : > Bug in Menu Handling: > > if a menu Group is named with a space in it, this genrate a syntax error in > the sub created.... > > > Regards From France > Olivier > Right, good job ! -- Benoit Minisini mailto:gambas at ...1... From girardhenri at ...67... Sun Nov 2 13:57:21 2003 From: girardhenri at ...67... (Henri Girard) Date: Sun, 2 Nov 2003 13:57:21 +0100 Subject: [Gambas-user] gambas 0.71 References: <200311021130.52945.gambas@...2...> <200311021251.43676.gambas@...2...> <200311021315.11325.gambas@...2...> Message-ID: lol... I wanted to download it.. but the mandrake's policy is changing.. it won't be downloadable only in a certain time ! So I sent a message to Paul Quillet who is director to tell me my opinion on that... And know I am waiting it... But in fact I don't know if it will bring much more ? Maybe softs are more recent ? Thanks anyway :) KR HG ----- Original Message ----- From: "Benoit Minisini" To: Sent: Sunday, November 02, 2003 1:15 PM Subject: Re: [Gambas-user] gambas 0.71 Le Dimanche 2 Novembre 2003 13:04, Henri Girard a ?crit : > where did you get the m9.2 from ? > KR > HG From sourceforge-raindog2 at ...94... Sun Nov 2 14:52:00 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Sun, 2 Nov 2003 08:52:00 -0500 Subject: [Gambas-user] gambas 0.71 In-Reply-To: References: <200311021130.52945.gambas@...2...> <200311021315.11325.gambas@...2...> Message-ID: <200311020852.00248.sourceforge-raindog2@...94...> On Sunday 02 November 2003 07:57, Henri Girard wrote: > lol... I wanted to download it.. but the mandrake's policy is > changing.. it won't be downloadable only in a certain time ! If you look around slasgdot a little, various people have already posted torrents of 9.2 that don't require you to be a club member. I don't know if any of them work, because I am a club member ;) Rob From girardhenri at ...67... Sun Nov 2 18:27:34 2003 From: girardhenri at ...67... (Henri Girard) Date: Sun, 2 Nov 2003 18:27:34 +0100 Subject: [Gambas-user] gambas 0.71 References: <200311021130.52945.gambas@...2...> <200311021315.11325.gambas@...2...> <200311020852.00248.sourceforge-raindog2@...94...> Message-ID: thanks I will have a look :) HG ----- Original Message ----- From: "Rob" To: Sent: Sunday, November 02, 2003 2:52 PM Subject: Re: [Gambas-user] gambas 0.71 > On Sunday 02 November 2003 07:57, Henri Girard wrote: > > lol... I wanted to download it.. but the mandrake's policy is > > changing.. it won't be downloadable only in a certain time ! > > If you look around slasgdot a little, various people have already > posted torrents of 9.2 that don't require you to be a club > member. > > I don't know if any of them work, because I am a club member ;) > > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From danielcampos at ...277... Sun Nov 2 20:28:01 2003 From: danielcampos at ...277... (daniel) Date: Sun, 02 Nov 2003 19:28:01 +0000 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021130.52945.gambas@...2...> References: <200311021130.52945.gambas@...2...> Message-ID: <1067801281.3312.6.camel@...278...> I'm afraid but 'Wait' does not work yet on gambas 0.71 without QT. The little program I sent you the other day: PUBLIC MyClient AS ClientSocket PUBLIC SUB Main() MyClient=NEW ClientSocket MyClient.ConnectSocket("127.0.0.1",7) DO UNTIL MyClient.Status=7 ' Connected Wait(0.1) PRINT "CONECTING..." LOOP PRINT "OK" END Works OK using QT, but when I try to use it without QT, the loop never ends... Regards, Daniel Campos NOTE : the version of networking component I sent to the list, could not work correctly without QT, as I forgot to add '-lpthread' in 'LIBS' at MakeFile. When QT is loaded, there's no problem as it loads al threading libraries, but if you want to test the component without QT, you should recompile it adding LIBS= -lpthread at MakeFile El dom, 02-11-2003 a las 10:30, Benoit Minisini escribi?: > Hi, Gambas users, > > After a long period of two months, here is gambas 0.71. > > There are many bug fixes in this version, and many incompatible changes in the > Key class and the Process class, so read the Changelog carefully ! > > The network component of Daniel Campos will be integrated in the next version. > > Here is a list of the problems I want to fix before the 1.0 release: > > 1) Clean up the 'introspection' mechanism, i.e. the Symbol, Class and > Component classes. > > 2) Try to solve the problem with EXEC/SHELL ... WAIT that do not call the > event loop. This needs a GLibc function that exists, but that relies on a > missing Linux system call ! For those interested, type 'man pselect'. > > 3) Having a better image processing class: at the moment, you can access > pixels, replace colored pixels by transparent pixels, flip, stretch or rotate > an image. I'd like to have more powerful functions and a more beautiful > interface to this functions :-) > > 4) I'd like to be sure that gambas install and run correctly on all Linux > distributions, so don't hesitate to tell me when you can't do that with your > distribution, or when you can, so that I know. I have only a Mandrake 9.2 at > home, no VMWare yet ! > > 5) At the moment, you need to call Conv$() to convert Desktop.Charset to > System.Charset, and it is boring. For example, if you type a file name with > non-ASCII characters in your source code, then it is stored as UTF-8 > character. If you want to open this file with OPEN, you need to convert the > file name to System.Charset (ISO-8859-15 on my Mandrake) before. This is not > needed on systems like RedHat that use UTF-8 everywhere. Maybe I should > simulate UTF-8 file system internally in the interpreter, i.e. do the > conversion automatically ? > > 6) Integrating cleanly the Daniel Campos' network component. > > 7) Having an updated documentation on the Wiki made by Rob. I hope this will > come soon ;-) > > And, of course, if you see other important points, tell them on this > mailing-list ! > > I have very little time at the moment, but I try to work on gambas as > frequently as possible. There is no many pending problems for the 1.0, so I'm > confident :-) > > Regards, From danielcampos at ...277... Sun Nov 2 21:06:26 2003 From: danielcampos at ...277... (daniel) Date: Sun, 02 Nov 2003 20:06:26 +0000 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <1067801281.3312.6.camel@...278...> References: <200311021130.52945.gambas@...2...> <1067801281.3312.6.camel@...278...> Message-ID: <1067803586.3316.18.camel@...278...> > I'm afraid but 'Wait' does not work yet on gambas 0.71 without QT. > The little program I sent you the other day: > Ooops!, well, yes, it works! The thing is that I forgot to implement "post_hook" on my component. Simply adding it and calling GB.CheckPost() it worked fine! Regards, Daniel Campos From nferraz at ...184... Sun Nov 2 23:41:37 2003 From: nferraz at ...184... (Nelson Ferraz) Date: Sun, 02 Nov 2003 20:41:37 -0200 Subject: [Gambas-user] OFF: Linus Torvalds' Q&A Message-ID: <3FA58821.1030406@...184...> Last month, Geekcruises' Linux Lunacy cruise to Alaska proved that Linux and Open Source are hot enough topics to even warm up Northern waters. The feature of the trip was a candid Q&A with Linux creator Linus Torvalds. A small quote: "The killer application for Windows was Visual Basic. It allowed you to make your hokey, self-made applications that did something stupid for your enterprise. But you could make them look good, and you could use a database. And you didn't have to understand it. Or care. Right? And that was a huge leap". I wonder if he has ever heard about Gambas... ;) Complete transcript: http://www.oetrends.com/news.php?action=view_record&idnum=277 -- []s Nelson ________________________________________________________________ Nelson Ferraz GNU BIS: http://www.gnubis.com.br PhPerl: http://www.phperl.com From pchapman at ...129... Mon Nov 3 04:30:37 2003 From: pchapman at ...129... (Philip A. Chapman) Date: 02 Nov 2003 21:30:37 -0600 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <3FA4E2EB.8060108@...200...> References: <200311021130.52945.gambas@...2...> <3FA4E2EB.8060108@...200...> Message-ID: <1067830237.2406.22.camel@...290...> On Sun, 2003-11-02 at 04:56, Ahmad Kamal wrote: > Does this include RH9 without updating QT? Ahmad, Fedora Core is due out tomorrow... And it includes QT 3 (Test 3 had version 3.1.2). To update to the latest version of Fedora may be a better option than to try to get Redhat 9 running QT 3. Check out http://fedora.redhat.com. Good Luck, -- Philip A. Chapman Application Development: Java, Visual Basic (MCP), PostgreSQL, MySQL, MSSQL Linux, Windows 9x, Windows NT, Windows 2000, Windows XP -------------- 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 eddy_betun at ...43... Mon Nov 3 04:45:28 2003 From: eddy_betun at ...43... (Stefanus Eddy) Date: Sun, 2 Nov 2003 19:45:28 -0800 (PST) Subject: [Gambas-user] gambas 0.71 In-Reply-To: <1067803586.3316.18.camel@...278...> Message-ID: <20031103034528.97087.qmail@...291...> i'm finish install Gambas 0.71 in RH 9.0 and work fine. no upgrade QT. 1. question "i have project develop with gambas 53 and work fine, but when i running this project in gambas 0.71 i get error. why gambas not support with old release???" thanks advance regards, eddy --- daniel wrote: > > I'm afraid but 'Wait' does not work yet on gambas > 0.71 without QT. > > The little program I sent you the other day: > > > > Ooops!, well, yes, it works! The thing is that I > forgot to implement > "post_hook" on my component. Simply adding it and > calling GB.CheckPost() > it worked fine! > > Regards, > > Daniel Campos > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > Does SourceForge.net help you be more productive? > Does it > help you create better code? SHARE THE LOVE, and > help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ From sourceforge-raindog2 at ...94... Mon Nov 3 06:22:39 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Mon, 3 Nov 2003 00:22:39 -0500 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <20031103034528.97087.qmail@...291...> References: <20031103034528.97087.qmail@...291...> Message-ID: <200311030022.39069.sourceforge-raindog2@...94...> On Sunday 02 November 2003 22:45, Stefanus Eddy wrote: > "i have project develop with gambas 53 and work > fine, but when i running this project in gambas 0.71 i > get error. why gambas not support with old release???" The language has changed in small but significant ways (e.g. the parameters to mouse and keyboard events being replaced by the mouse and key objects) since the 0.5x series. I wouldn't count on the language stabilizing until the 1.0 release (and I'm just assuming/hoping it'll stabilize then!) That's the whole point of a series of pre-1.0 releases like this: to improve core functionality without being held back by backwards compatibility with things that are broken. Rob From eng_ak at ...200... Mon Nov 3 09:53:07 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Mon, 03 Nov 2003 10:53:07 +0200 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <1067830237.2406.22.camel@...290...> References: <200311021130.52945.gambas@...2...> <3FA4E2EB.8060108@...200...> <1067830237.2406.22.camel@...290...> Message-ID: <3FA61773.20703@...200...> Yeah, thnx for the date. I was waiting eagerly for the fedora thing, though I am not sure I will be able to download it right away. Do u know if it's default package system will be YUM based? Do I have to download the whole thing, or upgrade from RH9? Thnx for the info anyway... Philip A. Chapman wrote: > On Sun, 2003-11-02 at 04:56, Ahmad Kamal wrote: > >>Does this include RH9 without updating QT? > > > Ahmad, > > Fedora Core is due out tomorrow... And it includes QT 3 (Test 3 had > version 3.1.2). To update to the latest version of Fedora may be a > better option than to try to get Redhat 9 running QT 3. Check out > http://fedora.redhat.com. > > Good Luck, From radoslav.dejanovic at ...116... Mon Nov 3 11:10:39 2003 From: radoslav.dejanovic at ...116... (Radoslav Dejanovic) Date: Mon, 3 Nov 2003 11:10:39 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <200311021130.52945.gambas@...2...> References: <200311021130.52945.gambas@...2...> Message-ID: <200311031110.39025.radoslav.dejanovic@...116...> On Sunday 02 November 2003 11:30 am, Benoit Minisini wrote: > 4) I'd like to be sure that gambas install and run correctly on all Linux > distributions, so don't hesitate to tell me when you can't do that with Just for the info, SuSE 9.0 ships with Gambas. ;) -- Radoslav Dejanovi?, founder and director Operacijski sustavi d.o.o. http://www.opsus.hr From girardhenri at ...67... Mon Nov 3 11:18:07 2003 From: girardhenri at ...67... (Henri Girard) Date: Mon, 3 Nov 2003 11:18:07 +0100 Subject: [Gambas-user] thanks References: <200311021130.52945.gambas@...2...> <200311031110.39025.radoslav.dejanovic@...116...> Message-ID: I am having a look to the fedora project and downloading it ! I believe in true Open... not bullshit like many are doing nowadays : mixing up capitalism and Open soft... thanks for the suggestion and sorry to dispatch my opinion on your list ! But it seems to me the most opened nowadays ... HG From gambas at ...2... Mon Nov 3 11:57:48 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 3 Nov 2003 11:57:48 +0100 Subject: [Gambas-user] gambas 0.71 In-Reply-To: <1067803586.3316.18.camel@...278...> References: <200311021130.52945.gambas@...2...> <1067801281.3312.6.camel@...278...> <1067803586.3316.18.camel@...278...> Message-ID: <200311031157.48088.gambas@...2...> Le Dimanche 2 Novembre 2003 21:06, daniel a ?crit : > > I'm afraid but 'Wait' does not work yet on gambas 0.71 without QT. > > The little program I sent you the other day: > > Ooops!, well, yes, it works! The thing is that I forgot to implement > "post_hook" on my component. Simply adding it and calling GB.CheckPost() > it worked fine! > > Regards, > > Daniel Campos > > No, You was right ! :-) Calling GB.CheckPost() is a job that must be done by the event loop, and I forgot to did it ! Arf ! We will succeed... ;-) -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Mon Nov 3 11:59:27 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 3 Nov 2003 11:59:27 +0100 Subject: [Gambas-user] OFF: Linus Torvalds' Q&A In-Reply-To: <3FA58821.1030406@...184...> References: <3FA58821.1030406@...184...> Message-ID: <200311031159.27737.gambas@...2...> Le Dimanche 2 Novembre 2003 23:41, Nelson Ferraz a ?crit : > Last month, Geekcruises' Linux Lunacy cruise to Alaska proved that Linux > and Open Source are hot enough topics to even warm up Northern waters. > The feature of the trip was a candid Q&A with Linux creator Linus Torvalds. > > A small quote: "The killer application for Windows was Visual Basic. It > allowed you to make your hokey, self-made applications that did > something stupid for your enterprise. But you could make them look good, > and you could use a database. And you didn't have to understand it. Or > care. Right? And that was a huge leap". > > I wonder if he has ever heard about Gambas... ;) > > Complete transcript: > > http://www.oetrends.com/news.php?action=view_record&idnum=277 Somebody should tell him ! -- Benoit Minisini mailto:gambas at ...1... From edward_cjhsu at ...253... Mon Nov 3 13:33:43 2003 From: edward_cjhsu at ...253... (Edward Hsu) Date: Mon, 3 Nov 2003 07:33:43 -0500 (EST) Subject: [Gambas-user] about example of movieplayer In-Reply-To: <200311011943.36009.olinux@...289...> Message-ID: <20031103123343.19591.qmail@...270...> Anyone runs movieplayer in the example for Gambas 0.71? I run it in Gambas 0.70b, it is working fine. But when I run it in Gambas 0.71, it is not working properly. I believe the problem comes from EXEC. From changelog, I found that EXEC has been changed. Anyone can give some examples about the usage of EXEC in Gambas 0.71? Thanks, Edward ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca From gambas at ...2... Mon Nov 3 17:11:02 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 3 Nov 2003 17:11:02 +0100 Subject: [Gambas-user] about example of movieplayer In-Reply-To: <20031103123343.19591.qmail@...270...> References: <20031103123343.19591.qmail@...270...> Message-ID: <200311031711.02602.gambas@...2...> Le Lundi 3 Novembre 2003 13:33, Edward Hsu a ?crit : > Anyone runs movieplayer in the example for Gambas > 0.71? I run it in Gambas 0.70b, it is working fine. > But when I run it in Gambas 0.71, it is not working > properly. I believe the problem comes from EXEC. From > changelog, I found that EXEC has been changed. Anyone > can give some examples about the usage of EXEC in > Gambas 0.71? > > Thanks, > > Edward > I confirm the problem - There is a strange bug I will track... There is another problem in the 0.71, that comes from the fact I upgrade to Mandrake 9.2, and so to another QT library. Sometimes, in the IDE, when you close a window, it reopens itself, and unusable. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Mon Nov 3 17:34:36 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 3 Nov 2003 17:34:36 +0100 Subject: [Gambas-user] about example of movieplayer In-Reply-To: <20031103123343.19591.qmail@...270...> References: <20031103123343.19591.qmail@...270...> Message-ID: <200311031734.36900.gambas@...2...> Le Lundi 3 Novembre 2003 13:33, Edward Hsu a ?crit : > Anyone runs movieplayer in the example for Gambas > 0.71? I run it in Gambas 0.70b, it is working fine. > But when I run it in Gambas 0.71, it is not working > properly. I believe the problem comes from EXEC. From > changelog, I found that EXEC has been changed. Anyone > can give some examples about the usage of EXEC in > Gambas 0.71? > > Thanks, > > Edward > You must remove the READ option of the EXEC command at line 25 in the file FMoviePlayer.class. Regards, -- Benoit Minisini mailto:gambas at ...1... From danielcampos at ...282... Mon Nov 3 20:31:11 2003 From: danielcampos at ...282... (Daniel Campos) Date: Mon, 03 Nov 2003 19:31:11 +0000 Subject: [Gambas-user] networking 0.0.14 Message-ID: <1067887871.2347.19.camel@...278...> Hi! Here's 0.0.14 release of "networking" component. - There's a lot of internal code reorganisation - A big part of "GB.Raise's" has been translated to "GB.Post's" - ClientSocket has two new properties : "LocalPort" and "LocalHost", but the old property "Port" has been renamed to "RemotePort", so if you were using ClientSocket, you need to update your code (sorry) - The first part of the HttpClient has been implemented. It is not yet documented, but you can find in this source code an example "Http_Get" to test it. By the way, does Linus Tolvalds kwnow you can create a little web browser with ten lines of Gambas Code? Take a look at Http_Get example. :) -- Daniel Campos -------------- next part -------------- A non-text attachment was scrubbed... Name: net_0_0_14.tar.bz2 Type: application/x-bzip Size: 97742 bytes Desc: not available URL: From paulwhalley at ...43... Mon Nov 3 22:20:05 2003 From: paulwhalley at ...43... (Paul Whalley) Date: Mon, 3 Nov 2003 13:20:05 -0800 (PST) Subject: [Gambas-user] where to download gambas 0.71 Message-ID: <20031103212005.61191.qmail@...292...> Where on this web site can I download 0.71? I have found only the download link for 0.70. Paul Whalley __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ From girardhenri at ...67... Mon Nov 3 23:27:16 2003 From: girardhenri at ...67... (Henri Girard) Date: Mon, 3 Nov 2003 23:27:16 +0100 Subject: [Gambas-user] where to download gambas 0.71 References: <20031103212005.61191.qmail@...292...> Message-ID: Have you heard of arklinux ? can gambas work on it ? ----- Original Message ----- From: "Paul Whalley" To: Sent: Monday, November 03, 2003 10:20 PM Subject: [Gambas-user] where to download gambas 0.71 > Where on this web site can I download 0.71? I have > found only the download link for 0.70. > > Paul Whalley > > > __________________________________ > Do you Yahoo!? > Exclusive Video Premiere - Britney Spears > http://launch.yahoo.com/promos/britneyspears/ > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From edward_cjhsu at ...253... Tue Nov 4 00:23:59 2003 From: edward_cjhsu at ...253... (Edward Hsu) Date: Mon, 3 Nov 2003 18:23:59 -0500 (EST) Subject: [Gambas-user] about example of movieplayer In-Reply-To: <200311031734.36900.gambas@...2...> Message-ID: <20031103232359.79614.qmail@...274...> Dear Benoit, yes, when I remove Read option, it works fine. Thanks. Regards, Edward --- Benoit Minisini wrote: > Le Lundi 3 Novembre 2003 13:33, Edward Hsu a ?crit : > > Anyone runs movieplayer in the example for Gambas > > 0.71? I run it in Gambas 0.70b, it is working > fine. > > But when I run it in Gambas 0.71, it is not > working > > properly. I believe the problem comes from EXEC. > From > > changelog, I found that EXEC has been changed. > Anyone > > can give some examples about the usage of EXEC in > > Gambas 0.71? > > > > Thanks, > > > > Edward > > > > You must remove the READ option of the EXEC command > at line 25 in the file > FMoviePlayer.class. > > Regards, > > -- > Benoit Minisini > mailto:gambas at ...1... > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > Does SourceForge.net help you be more productive? > Does it > help you create better code? SHARE THE LOVE, and > help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca From bsnipes at ...21... Tue Nov 4 04:59:28 2003 From: bsnipes at ...21... (Brian Snipes) Date: Mon, 03 Nov 2003 21:59:28 -0600 Subject: [Gambas-user] where to download gambas 0.71 In-Reply-To: References: <20031103212005.61191.qmail@...292...> Message-ID: <1067918368.8137.1.camel@...37...> It works perfectly on ArkLinux. I am running 1.0a9.1 on my laptop and just compiled and install Gambas 0.71. Just a : ./configure make make install Brian On Mon, 2003-11-03 at 16:27, Henri Girard wrote: > Have you heard of arklinux ? can gambas work on it ? > ----- Original Message ----- > From: "Paul Whalley" > To: > Sent: Monday, November 03, 2003 10:20 PM > Subject: [Gambas-user] where to download gambas 0.71 > > > > Where on this web site can I download 0.71? I have > > found only the download link for 0.70. > > > > Paul Whalley > > > > > > __________________________________ > > Do you Yahoo!? > > Exclusive Video Premiere - Britney Spears > > http://launch.yahoo.com/promos/britneyspears/ > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > Does SourceForge.net help you be more productive? Does it > > help you create better code? SHARE THE LOVE, and help us help > > YOU! Click Here: http://sourceforge.net/donate/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...67... Tue Nov 4 06:36:06 2003 From: girardhenri at ...67... (Henri Girard) Date: Tue, 4 Nov 2003 06:36:06 +0100 Subject: [Gambas-user] where to download gambas 0.71 References: <20031103212005.61191.qmail@...292...> <1067918368.8137.1.camel@...37...> Message-ID: thanks... i am downloading it 1.0a9.1 Henri ----- Original Message ----- From: "Brian Snipes" To: Sent: Tuesday, November 04, 2003 4:59 AM Subject: Re: [Gambas-user] where to download gambas 0.71 > It works perfectly on ArkLinux. I am running 1.0a9.1 on my laptop and > just compiled and install Gambas 0.71. Just a : > > ./configure > make > make install > > Brian > > On Mon, 2003-11-03 at 16:27, Henri Girard wrote: > > Have you heard of arklinux ? can gambas work on it ? > > ----- Original Message ----- > > From: "Paul Whalley" > > To: > > Sent: Monday, November 03, 2003 10:20 PM > > Subject: [Gambas-user] where to download gambas 0.71 > > > > > > > Where on this web site can I download 0.71? I have > > > found only the download link for 0.70. > > > > > > Paul Whalley > > > > > > > > > __________________________________ > > > Do you Yahoo!? > > > Exclusive Video Premiere - Britney Spears > > > http://launch.yahoo.com/promos/britneyspears/ > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: SF.net Giveback Program. > > > Does SourceForge.net help you be more productive? Does it > > > help you create better code? SHARE THE LOVE, and help us help > > > YOU! Click Here: http://sourceforge.net/donate/ > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > Does SourceForge.net help you be more productive? Does it > > help you create better code? SHARE THE LOVE, and help us help > > YOU! Click Here: http://sourceforge.net/donate/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From olinux at ...289... Tue Nov 4 08:00:15 2003 From: olinux at ...289... (Olivier Coquet) Date: Tue, 4 Nov 2003 08:00:15 +0100 Subject: [Gambas-user] networking 0.0.14 In-Reply-To: <1067887871.2347.19.camel@...278...> References: <1067887871.2347.19.camel@...278...> Message-ID: <200311040800.15418.olinux@...289...> Le Lundi 03 Novembre 2003 20:31, Daniel Campos a ?crit : > Hi! > > Here's 0.0.14 release of "networking" component. don't compile with make or make install command here is messages: [olinux at ...293... networking]$ make make: *** Pas de cibles sp?cifi?es et aucun makefile n'a ?t? trouv?. Arr?t. [olinux at ...293... networking]$ regards Olivier From eng_ak at ...200... Tue Nov 4 08:36:25 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Tue, 04 Nov 2003 09:36:25 +0200 Subject: [Gambas-user] about example of movieplayer In-Reply-To: <200311031711.02602.gambas@...2...> References: <20031103123343.19591.qmail@...270...> <200311031711.02602.gambas@...2...> Message-ID: <3FA756F9.1090301@...200...> > > I confirm the problem - There is a strange bug I will track... > > There is another problem in the 0.71, that comes from the fact I upgrade to > Mandrake 9.2, and so to another QT library. Sometimes, in the IDE, when you > close a window, it reopens itself, and unusable. > > Regards, > Is this really normal? I mean does every QT library breaks compat with older ones?? Looks pretty strange to me From olinux at ...289... Tue Nov 4 08:41:03 2003 From: olinux at ...289... (Olivier Coquet) Date: Tue, 4 Nov 2003 08:41:03 +0100 Subject: [Gambas-user] about example of movieplayer In-Reply-To: <3FA756F9.1090301@...200...> References: <20031103123343.19591.qmail@...270...> <200311031711.02602.gambas@...2...> <3FA756F9.1090301@...200...> Message-ID: <200311040841.03868.olinux@...289...> Le Mardi 04 Novembre 2003 08:36, Ahmad Kamal a ?crit : [...] > > There is another problem in the 0.71, that comes from the fact I upgrade > > to Mandrake 9.2, and so to another QT library. Sometimes, in the IDE, > > when you close a window, it reopens itself, and unusable. [...] Idem for me since 0.70 RH9 + QT upgraded Regards Olivier From olinux at ...289... Tue Nov 4 08:49:03 2003 From: olinux at ...289... (Olivier Coquet) Date: Tue, 4 Nov 2003 08:49:03 +0100 Subject: [Gambas-user] Bug or choice? In-Reply-To: <200311040841.03868.olinux@...289...> References: <20031103123343.19591.qmail@...270...> <3FA756F9.1090301@...200...> <200311040841.03868.olinux@...289...> Message-ID: <200311040849.03586.olinux@...289...> Hi! A modal form have no maximizer and Minimizer icone, is it a choice or a bug???? Non modal have it ! Regard Olivier From danielcampos at ...282... Tue Nov 4 09:22:08 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Tue, 4 Nov 2003 09:22:08 CET Subject: [Gambas-user] networking 0.0.14 Message-ID: Yes, there's not any makefile in the sources I sent. You have the instructions to compile it on folder "DOC" in the package I sent to the list (README). Regards, Daniel Campos >Le Lundi 03 Novembre 2003 20:31, Daniel Campos a ?crit : > Hi! > > Here's 0.0.14 release of "networking" component. > >don't compile with make or make install command > >here is messages: > >[olinux at ...293... networking]$ make >make: *** Pas de cibles sp?cifi?es et aucun makefile n'a ?t? trouv?. >Arr?t. >[olinux at ...293... networking]$ > > >regards >Olivier ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From Gambasfr at ...11... Tue Nov 4 22:07:46 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Tue, 4 Nov 2003 21:07:46 +0000 Subject: [Gambas-user] Bug or choice? In-Reply-To: <200311040849.03586.olinux@...289...> References: <20031103123343.19591.qmail@...270...> <200311040841.03868.olinux@...289...> <200311040849.03586.olinux@...289...> Message-ID: <200311042107.46632.Gambasfr@...11...> Le Mardi 4 Novembre 2003 07:49, Olivier Coquet a ?crit : > Hi! > > A modal form have no maximizer and Minimizer icone, is it a choice or a > bug???? > > Non modal have it ! > > Regard > Olivier > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user Hi, ??? I've tested and.... It's false If i create too forms test1 and test2 and put the border property of the Test2 to 'Resizable' If i type : dim hForm as Test2 hForm = New Test2 hForm.ShowModal it work on my computer !!! Fabien From gambas at ...2... Tue Nov 4 21:09:01 2003 From: gambas at ...2... (Benoit Minisini) Date: Tue, 4 Nov 2003 21:09:01 +0100 Subject: [Gambas-user] about example of movieplayer In-Reply-To: <3FA756F9.1090301@...200...> References: <20031103123343.19591.qmail@...270...> <200311031711.02602.gambas@...2...> <3FA756F9.1090301@...200...> Message-ID: <200311042109.01504.gambas@...2...> Le Mardi 4 Novembre 2003 08:36, Ahmad Kamal a ?crit : > > I confirm the problem - There is a strange bug I will track... > > > > There is another problem in the 0.71, that comes from the fact I upgrade > > to Mandrake 9.2, and so to another QT library. Sometimes, in the IDE, > > when you close a window, it reopens itself, and unusable. > > > > Regards, > > Is this really normal? I mean does every QT library breaks compat with > older ones?? Looks pretty strange to me > I think I found. I made a bug in the IDE, but this bug is only visible with QT >= 3.1.2 ! Yes, there are minor changes in the QT internals at almost each version, even the minor one. And bad luck, Gambas relies on these internals ! Regards, -- Benoit Minisini mailto:gambas at ...1... From Gambasfr at ...11... Tue Nov 4 23:31:37 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Tue, 4 Nov 2003 22:31:37 +0000 Subject: [Gambas-user] networking 0.0.14 In-Reply-To: <1067887871.2347.19.camel@...278...> References: <1067887871.2347.19.camel@...278...> Message-ID: <200311042231.37886.Gambasfr@...11...> Le Lundi 3 Novembre 2003 19:31, Daniel Campos a ?crit : > Hi! > > Here's 0.0.14 release of "networking" component. > > - There's a lot of internal code reorganisation > > - A big part of "GB.Raise's" has been translated > to "GB.Post's" > > - ClientSocket has two new properties : "LocalPort" > and "LocalHost", but the old property "Port" has > been renamed to "RemotePort", so if you were using > ClientSocket, you need to update your code (sorry) > > - The first part of the HttpClient has been implemented. > It is not yet documented, but you can find in this > source code an example "Http_Get" to test it. > > By the way, does Linus Tolvalds kwnow you can create a little web > browser with ten lines of Gambas Code? Take a look at > Http_Get example. :) From Gambasfr at ...11... Tue Nov 4 23:44:46 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Tue, 4 Nov 2003 22:44:46 +0000 Subject: [Gambas-user] networking 0.0.14 In-Reply-To: <1067887871.2347.19.camel@...278...> References: <1067887871.2347.19.camel@...278...> Message-ID: <200311042244.46434.Gambasfr@...11...> Le Lundi 3 Novembre 2003 19:31, Daniel Campos a ?crit : > Hi! > > Here's 0.0.14 release of "networking" component. > > - There's a lot of internal code reorganisation > > - A big part of "GB.Raise's" has been translated > to "GB.Post's" > > - ClientSocket has two new properties : "LocalPort" > and "LocalHost", but the old property "Port" has > been renamed to "RemotePort", so if you were using > ClientSocket, you need to update your code (sorry) > > - The first part of the HttpClient has been implemented. > It is not yet documented, but you can find in this > source code an example "Http_Get" to test it. > > By the way, does Linus Tolvalds kwnow you can create a little web > browser with ten lines of Gambas Code? Take a look at > Http_Get example. :) Hi Daniel Great work !!! If benoit know how to configure mimesource for picture in the QtextView, it will be more better. Fabien Bodard From gambas at ...2... Tue Nov 4 23:23:25 2003 From: gambas at ...2... (Benoit Minisini) Date: Tue, 4 Nov 2003 23:23:25 +0100 Subject: [Gambas-user] networking 0.0.14 In-Reply-To: <200311042244.46434.Gambasfr@...11...> References: <1067887871.2347.19.camel@...278...> <200311042244.46434.Gambasfr@...11...> Message-ID: <200311042323.25483.gambas@...2...> Le Mardi 4 Novembre 2003 23:44, Fabien Bodard a ?crit : > Le Lundi 3 Novembre 2003 19:31, Daniel Campos a ?crit : > > Hi! > > > > Here's 0.0.14 release of "networking" component. > > > > - There's a lot of internal code reorganisation > > > > - A big part of "GB.Raise's" has been translated > > to "GB.Post's" > > > > - ClientSocket has two new properties : "LocalPort" > > and "LocalHost", but the old property "Port" has > > been renamed to "RemotePort", so if you were using > > ClientSocket, you need to update your code (sorry) > > > > - The first part of the HttpClient has been implemented. > > It is not yet documented, but you can find in this > > source code an example "Http_Get" to test it. > > > > By the way, does Linus Tolvalds kwnow you can create a little web > > browser with ten lines of Gambas Code? Take a look at > > Http_Get example. :) > > Hi Daniel > > > Great work !!! > > If benoit know how to configure mimesource for picture in the QtextView, it > will be more better. > > Fabien Bodard > I think I can't - Too much work :-( It means transforming the TextView widget in almost a true browser ! Regards, -- Benoit Minisini mailto:gambas at ...1... From Gambasfr at ...11... Wed Nov 5 01:29:31 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Wed, 5 Nov 2003 00:29:31 +0000 Subject: [Gambas-user] networking 0.0.14 In-Reply-To: <200311042323.25483.gambas@...2...> References: <1067887871.2347.19.camel@...278...> <200311042244.46434.Gambasfr@...11...> <200311042323.25483.gambas@...2...> Message-ID: <200311050029.32001.Gambasfr@...11...> Le Mardi 4 Novembre 2003 22:23, Benoit Minisini a ?crit : > Le Mardi 4 Novembre 2003 23:44, Fabien Bodard a ?crit : > > Le Lundi 3 Novembre 2003 19:31, Daniel Campos a ?crit : > > > Hi! > > > > > > Here's 0.0.14 release of "networking" component. > > > > > > - There's a lot of internal code reorganisation > > > > > > - A big part of "GB.Raise's" has been translated > > > to "GB.Post's" > > > > > > - ClientSocket has two new properties : "LocalPort" > > > and "LocalHost", but the old property "Port" has > > > been renamed to "RemotePort", so if you were using > > > ClientSocket, you need to update your code (sorry) > > > > > > - The first part of the HttpClient has been implemented. > > > It is not yet documented, but you can find in this > > > source code an example "Http_Get" to test it. > > > > > > By the way, does Linus Tolvalds kwnow you can create a little web > > > browser with ten lines of Gambas Code? Take a look at > > > Http_Get example. :) > > > > Hi Daniel > > > > > > Great work !!! > > > > If benoit know how to configure mimesource for picture in the QtextView, > > it will be more better. > > > > Fabien Bodard > > I think I can't - Too much work :-( It means transforming the TextView > widget in almost a true browser ! > > Regards, So maybe with the kHTML componant .... For a Future...Future release... :-( From sourceforge-raindog2 at ...94... Wed Nov 5 00:36:39 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Tue, 4 Nov 2003 18:36:39 -0500 Subject: [Gambas-user] gambas documentation Message-ID: <200311041836.39347.sourceforge-raindog2@...94...> I made some more progress on the wiki. For one thing, I added a node called IncompleteDocumentation (linked from the main page) which will list all the pages that currently say "Not documented".... so anyone who figures out how to use a method or property that's not documented can now put a description in for the rest of us, and it'll be included in the Gambas help browser soonish :) The reason I did that is because I wrote a program that finds exported documentation from the info files that has no page including it, and creates a "Not documented" page for that node. As a result, while there are only about 30 undocumented pages on the main wiki, there are about 440 on the test wiki. :) I also started making export files for the component pages, and even figured out how to insert child classes under their parents (I think.... basically, any class that's used as a type in a symbol of one and only one other class, I consider a child of that class, and it seems to match up with what is already out there and what Benoit has been saying.) I haven't replaced the existing component pages with them yet except for the Qt one though, and again only in the test wiki. I think I'm pretty close to having the new documentation ready to go. Please look it over, start adding documentation for the classes and symbols that don't have any, and let's make the Gambas 1.0 manual something to embarass Bill and the gang ;) Rob From olivier at ...289... Wed Nov 5 06:35:35 2003 From: olivier at ...289... (Olivier Coquet) Date: Wed, 5 Nov 2003 06:35:35 +0100 Subject: [Gambas-user] Bug or choice? In-Reply-To: <200311042107.46632.Gambasfr@...11...> References: <20031103123343.19591.qmail@...270...> <200311040849.03586.olinux@...289...> <200311042107.46632.Gambasfr@...11...> Message-ID: <200311050635.35943.olivier@...289...> Le Mardi 04 Novembre 2003 22:07, Fabien Bodard a ?crit : [...] > > A modal form have no maximizer and Minimizer icone, is it a choice or a > > bug???? [....] > I've tested and.... It's false > > If i create too forms test1 and test2 and put the border property of the > Test2 to 'Resizable' > > If i type : > dim hForm as Test2 > > hForm = New Test2 > > hForm.ShowModal > > it work on my computer !!! > > Fabien yes it work but there is no maximiser or minimizer icone in the task bar only X !!!!!!!!! olivier From sourceforge-raindog2 at ...94... Wed Nov 5 08:00:45 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Wed, 5 Nov 2003 02:00:45 -0500 Subject: [Gambas-user] gambas documentation again Message-ID: <200311050200.45768.sourceforge-raindog2@...94...> OK, I spent some time tonight polishing up the new documentation extract, and from where I sit it's looking pretty good. Please bash away at it and find any problems I have left. http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponent Rob From karl.reinl at ...9... Wed Nov 5 19:52:43 2003 From: karl.reinl at ...9... (Charlie) Date: Wed, 05 Nov 2003 19:52:43 +0100 Subject: [Gambas-user] open 'VMWare' Message-ID: <3FA946FB.2090608@...9...> Salut, here you find a open 'VMWare' on which you can run Linux Boxes. http://www3.informatik.uni-erlangen.de/FAUmachine/ For germans in 12/2003 Linux Magazin (http://www.linux-magazin.de/) you find an article about amicalement Charlie From danielcampos at ...282... Wed Nov 5 20:27:41 2003 From: danielcampos at ...282... (Daniel Campos) Date: Wed, 05 Nov 2003 19:27:41 +0000 Subject: [Gambas-user] Networking 0.0.15 Message-ID: <1068060461.2444.7.camel@...278...> Hi! Here's 0.0.15 release of networking component: * UNIX sockets in ServerSocket has been implemented, so now you can act both as TCP or UNIX server. * POST method in HttpClient has been implemented, some bugs in GET method has been fixed. * G1 and G2 examples has been updated to alow test UNIX sockets. * A new example, http_post, shows an example of HTTP POST method, and an example of XML-RPC working, calling a sample server placed at Sourceforge. It is a also an example of how many technology need modern people to perform simple tasks. Pitagoras never dreamed what your gonna see in that example. Best regards, Daniel Campos -- Daniel Campos -------------- next part -------------- A non-text attachment was scrubbed... Name: net_0_0_15.tar.gz Type: application/x-compressed-tar Size: 68733 bytes Desc: not available URL: From gambas at ...2... Wed Nov 5 19:47:54 2003 From: gambas at ...2... (Benoit Minisini) Date: Wed, 5 Nov 2003 19:47:54 +0100 Subject: [Gambas-user] gambas documentation again In-Reply-To: <200311050200.45768.sourceforge-raindog2@...94...> References: <200311050200.45768.sourceforge-raindog2@...94...> Message-ID: <200311051947.54762.gambas@...2...> Le Mercredi 5 Novembre 2003 08:00, Rob a ?crit : > OK, I spent some time tonight polishing up the new documentation > extract, and from where I sit it's looking pretty good. Please > bash away at it and find any problems I have left. > > http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponent > > Rob > Hi, Rob, Good job ! But you guess I have many remarks :-) Here they are. I put a link so that you have an example of what I find wrong. * You forgotten the point in the name of virtual class. * You must make a difference between Object and Object[], otherwise one of the two is not displayed. Same thing for each array class. EX: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentGb * You should remove "(class)" from the title of class pages. * The "Symbol" title is not necessary. I think the table is clear enough. * The pages named "*Export" must not be displayed in the ReferenceBy. I didn't find a way to do that ! EX: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentGbApplication * You must ensure that you don't add HTML stuff that can't display on the TextView of QT. Browse the help in the IDE to see what I mean: text lines beginning with 'pre' are displayed. Note this could be a bug of the TextViewer. EX: No link. * It will be cool if you could list children class. For example, in .Array, displaying Date[], String[], Object[], ... EX: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentGbArray * If there is no event, or no property, or no method, it is not necessary to display a void column in the symbol tables. EX: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentGbGb * You forgotten the definition in constant pages. EX: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentGbGbConstantBinary * You forgotten the definition in event pages. EX: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentQtControlEventMouseDown * There is a bad interaction between a property that return a virtual object whose class has the same name than the property. Click on the "Menus" property in the "Window" page to see what I mean. Maybe you should name the page "GambasComponentQtWindowPropertyMenus" and keep "GambasComponentQtWindowMenus" for the class. EX: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentQtWindow That's all at the moment :-) Regards, -- Benoit Minisini mailto:gambas at ...1... From sourceforge-raindog2 at ...94... Wed Nov 5 20:16:15 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Wed, 5 Nov 2003 14:16:15 -0500 Subject: [Gambas-user] static version of documentation updated In-Reply-To: <200311050200.45768.sourceforge-raindog2@...94...> References: <200311050200.45768.sourceforge-raindog2@...94...> Message-ID: <200311051416.15570.sourceforge-raindog2@...94...> I finally generated a static version of the documentation. It definitely WILL NOT work from the web anymore.... it took three hours, twenty minutes, and eight seconds to generate the static version of GambasTest. :P It's pushing it as far as a daily static version goes, but I'm still planning on doing one. So if the site is slow between 0900 and 1200 GMT you'll know why.... Unfortunately, due to a bug in my hack of the publish script that generates the zip file, the file name is http://www.binara.com/gambas-wiki/static-.zip and appears to include static versions of both the normal and test wiki. Still, someone here might be able to hack the test wiki's far more up to date documentation into their copy of gambas, if they're so inclined... Rob From danielcampos at ...282... Thu Nov 6 00:12:12 2003 From: danielcampos at ...282... (Daniel Campos) Date: Wed, 05 Nov 2003 23:12:12 +0000 Subject: [Gambas-user] Oops! Message-ID: <1068073932.2947.1.camel@...278...> I think the sample of HTTP Post I sent with 0.0.15 version of "networking" is not correct. The sample I wanted to send is this. -- Daniel Campos -------------- next part -------------- A non-text attachment was scrubbed... Name: httppost.tar.gz Type: application/x-compressed-tar Size: 2883 bytes Desc: not available URL: From Gambasfr at ...11... Wed Nov 5 21:29:34 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Wed, 5 Nov 2003 20:29:34 +0000 Subject: [Gambas-user] Bug or choice? In-Reply-To: <200311050635.35943.olivier@...289...> References: <20031103123343.19591.qmail@...270...> <200311042107.46632.Gambasfr@...11...> <200311050635.35943.olivier@...289...> Message-ID: <200311052029.35138.Gambasfr@...11...> Le Mercredi 5 Novembre 2003 05:35, Olivier Coquet a ?crit : > Le Mardi 04 Novembre 2003 22:07, Fabien Bodard a ?crit : > [...] > > > > A modal form have no maximizer and Minimizer icone, is it a choice or a > > > bug???? > > [....] > > > I've tested and.... It's false > > > > If i create too forms test1 and test2 and put the border property of the > > Test2 to 'Resizable' > > > > If i type : > > dim hForm as Test2 > > > > hForm = New Test2 > > > > hForm.ShowModal > > > > it work on my computer !!! > > > > Fabien > > yes it work but there is no maximiser or minimizer icone in the task bar > only X !!!!!!!!! > > olivier > Not for me i've the twice ! (grrr RH !!) Fabien From olinux at ...289... Thu Nov 6 06:29:37 2003 From: olinux at ...289... (Olivier Coquet) Date: Thu, 6 Nov 2003 06:29:37 +0100 Subject: [Gambas-user] Gambas on Fedora 1.0 In-Reply-To: <200311051947.54762.gambas@...2...> References: <200311050200.45768.sourceforge-raindog2@...94...> <200311051947.54762.gambas@...2...> Message-ID: <200311060629.37848.olinux@...289...> New Fedora 1.0 (RedHat 10) is disponible I'll try to download iso and install it to test gambas with this i'll give you the feedback as soon as possible regards Olivier From girardhenri at ...67... Thu Nov 6 07:11:45 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 6 Nov 2003 07:11:45 +0100 Subject: [Gambas-user] Gambas on Fedora 1.0 References: <200311050200.45768.sourceforge-raindog2@...94...> <200311051947.54762.gambas@...2...> <200311060629.37848.olinux@...289...> Message-ID: good luck : I tried all night to download it but very buzy there ! Henri ----- Original Message ----- From: "Olivier Coquet" To: Sent: Thursday, November 06, 2003 6:29 AM Subject: [Gambas-user] Gambas on Fedora 1.0 > New Fedora 1.0 (RedHat 10) is disponible > > I'll try to download iso and install it to test gambas with this > > i'll give you the feedback as soon as possible > > regards > Olivier > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From eng_ak at ...200... Thu Nov 6 08:24:50 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Thu, 06 Nov 2003 09:24:50 +0200 Subject: [Gambas-user] Gambas on Fedora 1.0 In-Reply-To: References: <200311050200.45768.sourceforge-raindog2@...94...> <200311051947.54762.gambas@...2...> <200311060629.37848.olinux@...289...> Message-ID: <3FA9F742.1080800@...200...> bittorent is unbeatable there. Try it. Henri Girard wrote: > good luck : I tried all night to download it but very buzy there ! > Henri > ----- Original Message ----- > From: "Olivier Coquet" > To: > Sent: Thursday, November 06, 2003 6:29 AM > Subject: [Gambas-user] Gambas on Fedora 1.0 > > > >>New Fedora 1.0 (RedHat 10) is disponible >> >>I'll try to download iso and install it to test gambas with this >> >>i'll give you the feedback as soon as possible >> >>regards >>Olivier >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: SF.net Giveback Program. >>Does SourceForge.net help you be more productive? Does it >>help you create better code? SHARE THE LOVE, and help us help >>YOU! Click Here: http://sourceforge.net/donate/ >>_______________________________________________ >>Gambas-user mailing list >>Gambas-user at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From girardhenri at ...67... Thu Nov 6 11:38:55 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 6 Nov 2003 11:38:55 +0100 Subject: [Gambas-user] Gambas on Fedora 1.0 References: <200311050200.45768.sourceforge-raindog2@...94...> <200311051947.54762.gambas@...2...> <200311060629.37848.olinux@...289...> <3FA9F742.1080800@...200...> Message-ID: thanks... how do i use it ? i wanted to download with ftp ? but I am on ark and it's working fine now.. i will download it when I go the answer Henri ----- Original Message ----- From: "Ahmad Kamal" To: Sent: Thursday, November 06, 2003 8:24 AM Subject: Re: [Gambas-user] Gambas on Fedora 1.0 > bittorent is unbeatable there. Try it. > > Henri Girard wrote: > > good luck : I tried all night to download it but very buzy there ! > > Henri > > ----- Original Message ----- > > From: "Olivier Coquet" > > To: > > Sent: Thursday, November 06, 2003 6:29 AM > > Subject: [Gambas-user] Gambas on Fedora 1.0 > > > > > > > >>New Fedora 1.0 (RedHat 10) is disponible > >> > >>I'll try to download iso and install it to test gambas with this > >> > >>i'll give you the feedback as soon as possible > >> > >>regards > >>Olivier > >> > >> > >> > >>------------------------------------------------------- > >>This SF.net email is sponsored by: SF.net Giveback Program. > >>Does SourceForge.net help you be more productive? Does it > >>help you create better code? SHARE THE LOVE, and help us help > >>YOU! Click Here: http://sourceforge.net/donate/ > >>_______________________________________________ > >>Gambas-user mailing list > >>Gambas-user at lists.sourceforge.net > >>https://lists.sourceforge.net/lists/listinfo/gambas-user > >> > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > Does SourceForge.net help you be more productive? Does it > > help you create better code? SHARE THE LOVE, and help us help > > YOU! Click Here: http://sourceforge.net/donate/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From eng_ak at ...200... Thu Nov 6 13:26:50 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Thu, 06 Nov 2003 14:26:50 +0200 Subject: [Gambas-user] Gambas on Fedora 1.0 In-Reply-To: References: <200311050200.45768.sourceforge-raindog2@...94...> <200311051947.54762.gambas@...2...> <200311060629.37848.olinux@...289...> <3FA9F742.1080800@...200...> Message-ID: <3FAA3E0A.1050107@...200...> Get Bittorrent from here http://bitconjurer.org/BitTorrent/download.html install it and use this torrent to download fedora binary http://torrent.dulug.duke.edu/yarrow-binary-i386-iso.torrent or this one for fedora sources http://torrent.dulug.duke.edu/yarrow-src-i386-iso.torrent If you're still under 30% from FTP, I recommend bittorrent which will probably be very fast these days (new release) bye Henri Girard wrote: > thanks... how do i use it ? i wanted to download with ftp ? > but I am on ark and it's working fine now.. > i will download it when I go the answer > Henri > ----- Original Message ----- > From: "Ahmad Kamal" > To: > Sent: Thursday, November 06, 2003 8:24 AM > Subject: Re: [Gambas-user] Gambas on Fedora 1.0 > > > >>bittorent is unbeatable there. Try it. >> >>Henri Girard wrote: >> >>>good luck : I tried all night to download it but very buzy there ! >>>Henri >>>----- Original Message ----- >>>From: "Olivier Coquet" >>>To: >>>Sent: Thursday, November 06, 2003 6:29 AM >>>Subject: [Gambas-user] Gambas on Fedora 1.0 >>> >>> >>> >>> >>>>New Fedora 1.0 (RedHat 10) is disponible >>>> >>>>I'll try to download iso and install it to test gambas with this >>>> >>>>i'll give you the feedback as soon as possible >>>> >>>>regards >>>>Olivier >>>> >>>> >>>> >>>>------------------------------------------------------- >>>>This SF.net email is sponsored by: SF.net Giveback Program. >>>>Does SourceForge.net help you be more productive? Does it >>>>help you create better code? SHARE THE LOVE, and help us help >>>>YOU! Click Here: http://sourceforge.net/donate/ >>>>_______________________________________________ >>>>Gambas-user mailing list >>>>Gambas-user at lists.sourceforge.net >>>>https://lists.sourceforge.net/lists/listinfo/gambas-user >>>> >>> >>> >>> >>>------------------------------------------------------- >>>This SF.net email is sponsored by: SF.net Giveback Program. >>>Does SourceForge.net help you be more productive? Does it >>>help you create better code? SHARE THE LOVE, and help us help >>>YOU! Click Here: http://sourceforge.net/donate/ >>>_______________________________________________ >>>Gambas-user mailing list >>>Gambas-user at lists.sourceforge.net >>>https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: SF.net Giveback Program. >>Does SourceForge.net help you be more productive? Does it >>help you create better code? SHARE THE LOVE, and help us help >>YOU! Click Here: http://sourceforge.net/donate/ >>_______________________________________________ >>Gambas-user mailing list >>Gambas-user at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From girardhenri at ...67... Thu Nov 6 13:30:21 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 6 Nov 2003 13:30:21 +0100 Subject: [Gambas-user] Gambas on Fedora 1.0 References: <200311050200.45768.sourceforge-raindog2@...94...> <200311051947.54762.gambas@...2...> <200311060629.37848.olinux@...289...> <3FA9F742.1080800@...200...> <3FAA3E0A.1050107@...200...> Message-ID: thanks... it will save me time and troubles... Henri ----- Original Message ----- From: "Ahmad Kamal" To: Sent: Thursday, November 06, 2003 1:26 PM Subject: Re: [Gambas-user] Gambas on Fedora 1.0 > Get Bittorrent from here > http://bitconjurer.org/BitTorrent/download.html > > install it and use this torrent to download fedora binary > http://torrent.dulug.duke.edu/yarrow-binary-i386-iso.torrent > > or this one for fedora sources > http://torrent.dulug.duke.edu/yarrow-src-i386-iso.torrent > > If you're still under 30% from FTP, I recommend bittorrent which will > probably be very fast these days (new release) > > bye > > Henri Girard wrote: > > thanks... how do i use it ? i wanted to download with ftp ? > > but I am on ark and it's working fine now.. > > i will download it when I go the answer > > Henri > > ----- Original Message ----- > > From: "Ahmad Kamal" > > To: > > Sent: Thursday, November 06, 2003 8:24 AM > > Subject: Re: [Gambas-user] Gambas on Fedora 1.0 > > > > > > > >>bittorent is unbeatable there. Try it. > >> > >>Henri Girard wrote: > >> > >>>good luck : I tried all night to download it but very buzy there ! > >>>Henri > >>>----- Original Message ----- > >>>From: "Olivier Coquet" > >>>To: > >>>Sent: Thursday, November 06, 2003 6:29 AM > >>>Subject: [Gambas-user] Gambas on Fedora 1.0 > >>> > >>> > >>> > >>> > >>>>New Fedora 1.0 (RedHat 10) is disponible > >>>> > >>>>I'll try to download iso and install it to test gambas with this > >>>> > >>>>i'll give you the feedback as soon as possible > >>>> > >>>>regards > >>>>Olivier > >>>> > >>>> > >>>> > >>>>------------------------------------------------------- > >>>>This SF.net email is sponsored by: SF.net Giveback Program. > >>>>Does SourceForge.net help you be more productive? Does it > >>>>help you create better code? SHARE THE LOVE, and help us help > >>>>YOU! Click Here: http://sourceforge.net/donate/ > >>>>_______________________________________________ > >>>>Gambas-user mailing list > >>>>Gambas-user at lists.sourceforge.net > >>>>https://lists.sourceforge.net/lists/listinfo/gambas-user > >>>> > >>> > >>> > >>> > >>>------------------------------------------------------- > >>>This SF.net email is sponsored by: SF.net Giveback Program. > >>>Does SourceForge.net help you be more productive? Does it > >>>help you create better code? SHARE THE LOVE, and help us help > >>>YOU! Click Here: http://sourceforge.net/donate/ > >>>_______________________________________________ > >>>Gambas-user mailing list > >>>Gambas-user at lists.sourceforge.net > >>>https://lists.sourceforge.net/lists/listinfo/gambas-user > >>> > >> > >> > >> > >>------------------------------------------------------- > >>This SF.net email is sponsored by: SF.net Giveback Program. > >>Does SourceForge.net help you be more productive? Does it > >>help you create better code? SHARE THE LOVE, and help us help > >>YOU! Click Here: http://sourceforge.net/donate/ > >>_______________________________________________ > >>Gambas-user mailing list > >>Gambas-user at lists.sourceforge.net > >>https://lists.sourceforge.net/lists/listinfo/gambas-user > >> > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > Does SourceForge.net help you be more productive? Does it > > help you create better code? SHARE THE LOVE, and help us help > > YOU! Click Here: http://sourceforge.net/donate/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From danielcampos at ...282... Thu Nov 6 17:40:22 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Thu, 6 Nov 2003 17:40:22 CET Subject: [Gambas-user] Network documentation Message-ID: Hi all, specially documentation mantainers: As soon "net" component will part of Gambas, I send you documentation I've written describing the following classes: * SerialPort * ServerSocket * ClientSocket * Datagram * DataPacket * DnsClient I would be great if we could have it placed in Binara with all the rest of component documentation the day 0.72 release will born, "connected to the web" : ) . I just have to finish HttpClient and its documentation, I'll try to send it to you this week-end. Best regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) -------------- next part -------------- An HTML attachment was scrubbed... URL: From sourceforge-raindog2 at ...94... Thu Nov 6 17:48:42 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Thu, 6 Nov 2003 11:48:42 -0500 Subject: [Gambas-user] Network documentation In-Reply-To: References: Message-ID: <200311061148.42735.sourceforge-raindog2@...94...> On Thursday 06 November 2003 15:40, danielcampos at ...282... wrote: > I would be great if we could have it placed in Binara with > all the rest of component documentation the day 0.72 release > will born, "connected to the web" : ) . I'll try to get those added when I get back to implementing Benoit's requests ;) Hopefully before 0.72 anyway... Naturally, anyone else who has more free time right now should feel free to get started, especially those who would like to help Gambas development but can't code.... Rob From gambas at ...2... Thu Nov 6 20:23:38 2003 From: gambas at ...2... (Benoit Minisini) Date: Thu, 6 Nov 2003 20:23:38 +0100 Subject: [Gambas-user] Network documentation In-Reply-To: References: Message-ID: <200311062023.38089.gambas@...2...> Le Jeudi 6 Novembre 2003 21:40, danielcampos at ...282... a ?crit : > Hi all, specially documentation mantainers: > > As soon "net" component will part of Gambas, I send you > documentation I've written describing the following > classes: > > * SerialPort > * ServerSocket > * ClientSocket > * Datagram > * DataPacket > * DnsClient > > I would be great if we could have it placed in Binara with all the > rest of component documentation the day 0.72 release will born, > "connected to the web" : ) . > > I just have to finish HttpClient and its documentation, I'll try to > send it to you this week-end. > > Best regards, > > Daniel Campos > Don't be in a hurry with the documentation, because there will be changes in the networking component interface, as I told you in a previous e-mail (using PRINT, INPUT, etc. directly on the socket objects) Regards, -- Benoit Minisini mailto:gambas at ...1... From Gambasfr at ...11... Thu Nov 6 21:46:25 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Thu, 6 Nov 2003 20:46:25 +0000 Subject: [Gambas-user] Oops! In-Reply-To: <1068073932.2947.1.camel@...278...> References: <1068073932.2947.1.camel@...278...> Message-ID: <200311062046.25315.Gambasfr@...11...> Le Mercredi 5 Novembre 2003 23:12, Daniel Campos a ?crit : > I think the sample of HTTP Post I sent with 0.0.15 version > of "networking" is not correct. The sample I wanted > to send is this. Hi Daniel I send to you a right Makefile.am it copy automatiquely the .component file to his final dest. In you doc you must to explain more simply what each component is for... Gambas is for beginner too. Fabien Bodard -------------- next part -------------- A non-text attachment was scrubbed... Name: Makefile.am Type: text/x-makefile Size: 465 bytes Desc: not available URL: From girardhenri at ...67... Thu Nov 6 21:39:38 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 6 Nov 2003 21:39:38 +0100 Subject: [Gambas-user] gambas on arklinux Message-ID: Hi :) You were right : gambas compiled sucessfully on ark ! Really speedy this distrib :) Henri From edward_cjhsu at ...253... Fri Nov 7 12:30:04 2003 From: edward_cjhsu at ...253... (Edward Hsu) Date: Fri, 7 Nov 2003 06:30:04 -0500 (EST) Subject: [Gambas-user] about process In-Reply-To: <200311051416.15570.sourceforge-raindog2@...94...> Message-ID: <20031107113004.1381.qmail@...254...> From sourceforge-raindog2 at ...94... Fri Nov 7 19:35:42 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Fri, 7 Nov 2003 13:35:42 -0500 Subject: [Gambas-user] Re: [Gambas-devel] Printing In-Reply-To: <3FAAFC89.000004.00700@...153...> References: <1067716490.13559.2.camel@...278...> <3FAAFC89.000004.00700@...153...> Message-ID: <200311071335.42228.sourceforge-raindog2@...94...> On Thursday 06 November 2003 20:59, Andr?s Calder?n J. wrote: > I would like know if there is a way to print the content of a > TextArea or at least how to print a string variable (Printer). Well, for example, try putting this code in the click event of a button marked "Print" (let's say you have a textarea named TextArea1) Printer.setup ' brings up print settings dialog Draw.begin(Printer) Draw.Text(TextArea1.Text,200,200) Draw.end This will kick out a page with the contents of the TextArea1 object. It seems to do odd things with blank lines though (like omit them.... sometimes.) I just now updated the test wiki with the above example. I see a big flaw with how this works in that sometimes you may want to interleave drawing on a printer and some other drawing surface (like a DrawingArea you're using as part of a user interface) but Draw.end causes the printer to kick out the page. I'll probably write a PrintDocument class/library at some point to buffer drawing events and let you print them whenever. I also think I'd need a "Print" method to automatically keep track of "cursor position" as with VB's "Printer.Print" (which itself needs a lot of help.) This question belonged on gambas-user hy the way, so if you have any more questions let's continue it over there. gambas-devel is to discuss changes to the inner workings of gambas itself. Rob From sourceforge-raindog2 at ...94... Fri Nov 7 19:43:02 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Fri, 7 Nov 2003 13:43:02 -0500 Subject: [Gambas-user] finance library pre-release Message-ID: <200311071343.02059.sourceforge-raindog2@...94...> Here is a library I wrote called "Finance". Ultimately I mean for it to have a comprehensive set of financial functions like those in Openoffice, VB and the perl Math::Finance module. For now, it just has the basic loan functions (with example form) implemented from information I found in sci.math and in other places around the net, and the beginning of a few investment functions. Please take a look if you have any use for this stuff, let me know if any of the functions works especially badly (especially on the loan side which is "done" as far as I know) and contribute any functions or algorithms that work better than what I have or that I haven't included yet. You should be able to put it in your path and go use Finance and then interestrate = Loan.rate(100000,600,360) etc. This is also available at: http://www.kudla.org/Finance.tar.gz for now. Thanks Rob -------------- next part -------------- A non-text attachment was scrubbed... Name: Finance.tar.gz Type: application/x-tgz Size: 3542 bytes Desc: not available URL: From sourceforge-raindog2 at ...94... Fri Nov 7 20:45:35 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Fri, 7 Nov 2003 14:45:35 -0500 Subject: [Gambas-user] static functions in libraries? Message-ID: <200311071445.35075.sourceforge-raindog2@...94...> OK, so I actually tried to use my shiny new library in a project, and after bashing my head against the wall because the IDE didn't recognize the "Loan" class despite the presence of USE "Finance" (with Finance in the same directory), I finally put "Public Loan as Loan" at the top of the module and "Loan = NEW Loan" in my sub after the USE, and then it complained because the functions I wrote are static. But taking out the Loan = NEW Loan caused the functions to die with "Null object" (which makes sense.) So is it not possible to put static subs and functions into a library? Can I not just tell my users to USE "Finance" at the start of their sub main and then use my static functions at will? I'm trying to use the libraries to add functions they think are lacking in Gambas, not create a "Loan object" or whatever. Rob From sourceforge-raindog2 at ...94... Fri Nov 7 22:38:49 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Fri, 7 Nov 2003 16:38:49 -0500 Subject: [Gambas-user] more static class confusion Message-ID: <200311071638.49142.sourceforge-raindog2@...94...> OK, so I converted my Loan class to not use any static methods, and changed my little example form to instantiate a copy of Loan like so: PUBLIC Loan as Loan and then in the form_open (or another sub) Loan = NEW Loan When Gambas reaches this line, it dies with "Class 'Loan' is static". If I leave it out, I get "Null object" when I try to use Loan's methods, naturally. If I leave out the PUBLIC Loan as Loan declaration as well, I get "Loan.[method] is not static" when it tries to run one of the methods. Changing PUBLIC Loan as Loan to DIM Loan as Loan (in a method) doesn't help either. I even rm -rf'ed my .gambas subdirectory of the project and grepped for the word static, and nothing turned up. What am I doing wrong? The (new) offending version of the project is at http://www.kudla.org/Finance-dynamic.tar.gz Rob From danielcampos at ...277... Sat Nov 8 01:01:45 2003 From: danielcampos at ...277... (daniel) Date: Sat, 08 Nov 2003 00:01:45 +0000 Subject: [Gambas-user] Oops! In-Reply-To: <200311062046.25315.Gambasfr@...11...> References: <1068073932.2947.1.camel@...278...> <200311062046.25315.Gambasfr@...11...> Message-ID: <1068249705.2841.34.camel@...278...> El jue, 06-11-2003 a las 20:46, Fabien Bodard escribi?: > Le Mercredi 5 Novembre 2003 23:12, Daniel Campos a ?crit : > > I think the sample of HTTP Post I sent with 0.0.15 version > > of "networking" is not correct. The sample I wanted > > to send is this. > > > Hi Daniel > > I send to you a right Makefile.am > Thanks! > it copy automatiquely the .component file to his final dest. > > > In you doc you must to explain more simply what each component is for... > Gambas is for beginner too. > I'll try to do it, in planning to create a good amount of documentation about these classes, in fact the document placed at Wiki about networking is just the preamble to the "gambas network book", that i'll write when I have some more time. Regards, Daniel Campos From leo.barnhoorn at ...246... Sat Nov 8 09:57:47 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sat, 8 Nov 2003 00:57:47 -0800 Subject: [Gambas-user] more static class confusion In-Reply-To: <200311071638.49142.sourceforge-raindog2@...94...> References: <200311071638.49142.sourceforge-raindog2@...94...> Message-ID: <200311080057.47929.leo.barnhoorn@...246...> Hallo Rob, I hoop this is what you are loking for. Regards, Leo. On Friday 07 November 2003 13:38, Rob wrote: > OK, so I converted my Loan class to not use any static methods, > and changed my little example form to instantiate a copy of Loan > like so: > > PUBLIC Loan as Loan > > and then in the form_open (or another sub) > > Loan = NEW Loan > > When Gambas reaches this line, it dies with "Class 'Loan' is > static". If I leave it out, I get "Null object" when I try to > use Loan's methods, naturally. If I leave out the PUBLIC Loan > as Loan declaration as well, I get "Loan.[method] is not static" > when it tries to run one of the methods. > > Changing PUBLIC Loan as Loan to DIM Loan as Loan (in a method) > doesn't help either. I even rm -rf'ed my .gambas subdirectory > of the project and grepped for the word static, and nothing > turned up. What am I doing wrong? > > The (new) offending version of the project is at > > http://www.kudla.org/Finance-dynamic.tar.gz > > Rob > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > 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: Finance-GUI.tar.gz Type: application/x-tgz Size: 587 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Finance-USE.tar.gz Type: application/x-tgz Size: 1240 bytes Desc: not available URL: From olinux at ...289... Sat Nov 8 09:33:28 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 8 Nov 2003 09:33:28 +0100 Subject: [Gambas-user] not working on fedora core 1 In-Reply-To: <200311080057.47929.leo.barnhoorn@...246...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311080057.47929.leo.barnhoorn@...246...> Message-ID: <200311080933.28715.olinux@...289...> try to compile 0.71 on fresh fedora install (core1) not working block on compiling array.c ! regards olivier From olinux at ...289... Sat Nov 8 09:54:13 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 8 Nov 2003 09:54:13 +0100 Subject: [Gambas-user] not working on fedora core 1 In-Reply-To: <200311080933.28715.olinux@...289...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311080057.47929.leo.barnhoorn@...246...> <200311080933.28715.olinux@...289...> Message-ID: <200311080954.13250.olinux@...289...> Le Samedi 08 Novembre 2003 09:33, Olivier Coquet a ?crit : > try to compile 0.71 on fresh fedora install (core1) > > not working > > block on compiling array.c ! > > regards > olivier temporary solution: ============== on rh9: ./configure gmake copy the folder on a fedora installed linux pc gmake install it's work !!!!!! regards Olivier From pchapman at ...129... Sat Nov 8 16:56:20 2003 From: pchapman at ...129... (Philip A. Chapman) Date: Sat, 08 Nov 2003 09:56:20 -0600 Subject: [Gambas-user] not working on fedora core 1 In-Reply-To: <200311080954.13250.olinux@...289...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311080057.47929.leo.barnhoorn@...246...> <200311080933.28715.olinux@...289...> <200311080954.13250.olinux@...289...> Message-ID: <1068306979.4304.1.camel@...294...> I was able to compile gambas on Fedora Core 1. I had to do: ./reconf ./configure make su - cd /usr/src/gambas-0.71 make install The big difference is ./reconf. I hope this helps. On Sat, 2003-11-08 at 02:54, Olivier Coquet wrote: > Le Samedi 08 Novembre 2003 09:33, Olivier Coquet a ?crit : > > try to compile 0.71 on fresh fedora install (core1) > > > > not working > > > > block on compiling array.c ! > > > > regards > > olivier > temporary solution: > ============== > on rh9: > ./configure > gmake > > copy the folder on a fedora installed linux pc > > gmake install > > it's work !!!!!! > > regards > Olivier > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Philip A. Chapman Application Development: Java, Visual Basic, PostgreSQL, MySQL, MSSQL Linux, Windows 9x, Windows NT, Windows 2000, Windows XP -------------- 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 olinux at ...289... Sat Nov 8 18:00:14 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 8 Nov 2003 18:00:14 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311080057.47929.leo.barnhoorn@...246...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311080057.47929.leo.barnhoorn@...246...> Message-ID: <200311081800.14138.olinux@...289...> i think i've detected a bug in the Val() function gambas V0.71 on RH9 i'll try to be clare but........ if you use the val() function on a variable called num like this: i=val(num) if num is = to "123" all is ok, but if num="ert" sometime this result in NULL for i, sometime this result in an error mismatch date, num or boolean expected. i've seen that in a fct writed for my convenience I give you the complete code to reproduct the error. Note than if the fct is executed correctly for the first time, second time never generate an error, and if the code is executed with error the first time, second time generate allway an error.......!!!!! start of code.......... PUBLIC FUNCTION dte_conv(dte AS String, rev AS Boolean) AS String ' Fonction de convertion de date, si rev = true format = bdd ' si rev = false format ? la fran?aise DIM m AS String DIM j AS String DIM y AS String m="" j="" y="" IF rev = FALSE THEN j = Left$(dte,2) m = Mid$(dte,4,2) y = Right$(dte,2) IF (Val(j) > 31) OR (Val(m) > 12)THEN RETURN ("") ELSE RETURN (m & "-" & j & "-" & y) ENDIF ELSE m = Left$(dte,2) j = Mid$(dte,4,2) y = Right$(dte,2) IF (Val(j) > 31) OR (Val(m) > 12)THEN RETURN ("") ELSE RETURN (j & "-" & m & "-" & y) ENDIF ENDIF END ........end of code Regards Olivier From olinux at ...289... Sat Nov 8 18:03:29 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 8 Nov 2003 18:03:29 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311081800.14138.olinux@...289...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311080057.47929.leo.barnhoorn@...246...> <200311081800.14138.olinux@...289...> Message-ID: <200311081803.29676.olinux@...289...> Le Samedi 08 Novembre 2003 18:00, Olivier Coquet a ?crit : > i think i've detected a bug in the Val() function gambas V0.71 on RH9 > > i'll try to be clare but........ > > if you use the val() function on a variable called num > like this: > > i=val(num) > > if num is = to "123" all is ok, but if num="ert" sometime this result in > NULL for i, sometime this result in an error mismatch date, num or boolean > expected. I think it's not the val funct which is bad but the > operator whic is bad...... regards Olivier From ronstk at ...239... Sun Nov 9 08:06:32 2003 From: ronstk at ...239... (ron) Date: Sun, 9 Nov 2003 08:06:32 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: References: Message-ID: <200311090806.33028.ronstk@...239...> > Message: 5 > From: Olivier Coquet > Organization: Serengeti > To: gambas-user at lists.sourceforge.net > Subject: Re: [Gambas-user] Maybe a bug with val functiun > Date: Sat, 8 Nov 2003 18:03:29 +0100 > Reply-To: gambas-user at lists.sourceforge.net > > Le Samedi 08 Novembre 2003 18:00, Olivier Coquet a =E9crit : > > i think i've detected a bug in the Val() function gambas V0.71 on RH9 > > > > i'll try to be clare but........ > > > > if you use the val() function on a variable called num > > like this: > > > > i=3Dval(num) > > > > if num is =3D to "123" all is ok, but if num=3D"ert" sometime this > > result= > > in > > > NULL for i, sometime this result in an error mismatch date, num or > > boolean expected. > > I think it's not the val funct which is bad but the > operator whic is=20 > bad...... > > regards > Olivier > May be if you try RETURN (Cstr("")) instead of RETURN ("") I found a same problem when i fill a array with "" (emty strings) arr=["","","",""] 'all entries are 'Null' must corected to arr=[Cstr(""),"","",""] all entries are now "" Gambas sees a variable preset with "" as Null in relational compares as anemtystring="" IF anemptystring = "" THEN print "this is empty" ELSE print "this is NULL" ENDIF From olinux at ...289... Sun Nov 9 09:05:18 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 9 Nov 2003 09:05:18 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311090806.33028.ronstk@...239...> References: <200311090806.33028.ronstk@...239...> Message-ID: <200311090905.18997.olinux@...289...> Le Dimanche 09 Novembre 2003 08:06, ron a ?crit : > May be if you try RETURN (Cstr("")) instead of RETURN ("") [...] thanks a lot regards Olivier From olinux at ...289... Sun Nov 9 09:06:39 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 9 Nov 2003 09:06:39 +0100 Subject: [Gambas-user] Need Help !!!! In-Reply-To: <200311090806.33028.ronstk@...239...> References: <200311090806.33028.ronstk@...239...> Message-ID: <200311090906.39409.olinux@...289...> somebody can say me what is it???? a black windows at exec time saying me: WARNING: 2 allocation(s) not freed ?????? thanks and regards Olivier From gambas at ...2... Sun Nov 9 18:25:18 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 9 Nov 2003 18:25:18 +0100 Subject: [Gambas-user] about process In-Reply-To: <20031107113004.1381.qmail@...254...> References: <20031107113004.1381.qmail@...254...> Message-ID: <200311091825.18401.gambas@...2...> Le Vendredi 7 Novembre 2003 12:30, Edward Hsu a ?crit : > From changeLog I found that: > > Process.Send has been removed. > 'Write' event Process has been replaced by 'Read' event Process, and do not > take any argument anymore. Use READ, LINE INPUT or INPUT instead. The > 'Error' event did not change. But in movieplayer example, the > Process.send(" ") is still being used and works fine. Actually, Process.Send has not been removed yet. > > The write event has been replaced by Read event withour argument. Could > anyone tell me how can we get the information? Before, we use > Process_Write(sData as string), so that we can use sData to do whatever we > want. Without sData, how can we get data from running process? I try READ > and Line Input and did not get anything in return. > > Thanks in advance for help. > > > > Regards, > > Edward > The event works this way: SUB Process_Read() DIM sData AS String READ #LAST, sData, -1024 ' Read 1024 bytes at most. ' or LINE INPUT #LAST, sData ' Read a line, if you are sure that your process sends lines. END LAST is a reference to the process object that can be used like a File object. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Sun Nov 9 18:28:27 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 9 Nov 2003 18:28:27 +0100 Subject: [Gambas-user] static functions in libraries? In-Reply-To: <200311071445.35075.sourceforge-raindog2@...94...> References: <200311071445.35075.sourceforge-raindog2@...94...> Message-ID: <200311091828.27699.gambas@...2...> Le Vendredi 7 Novembre 2003 20:45, Rob a ?crit : > OK, so I actually tried to use my shiny new library in a project, > and after bashing my head against the wall because the IDE > didn't recognize the "Loan" class despite the presence of USE > "Finance" (with Finance in the same directory), I finally put > "Public Loan as Loan" at the top of the module and "Loan = NEW > Loan" in my sub after the USE, and then it complained because > the functions I wrote are static. But taking out the Loan = NEW > Loan caused the functions to die with "Null object" (which makes > sense.) > > So is it not possible to put static subs and functions into a > library? Can I not just tell my users to USE "Finance" at the > start of their sub main and then use my static functions at > will? I'm trying to use the libraries to add functions they > think are lacking in Gambas, not create a "Loan object" or > whatever. > > Rob > Use a module, or a class with only static public functions. See the Config class used by the IDE, that is located in the Util project. -- Benoit Minisini mailto:gambas at ...1... From girardhenri at ...67... Sun Nov 9 18:32:42 2003 From: girardhenri at ...67... (Henri Girard) Date: Sun, 9 Nov 2003 18:32:42 +0100 Subject: [Gambas-user] on fedora References: <20031107113004.1381.qmail@...254...> <200311091825.18401.gambas@...2...> Message-ID: Hi :) I compiled gambas on fedora... wonderfull ! kind regards :) Henri From gambas at ...2... Sun Nov 9 18:34:51 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 9 Nov 2003 18:34:51 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311090806.33028.ronstk@...239...> References: <200311090806.33028.ronstk@...239...> Message-ID: <200311091834.51920.gambas@...2...> Le Dimanche 9 Novembre 2003 08:06, ron a ?crit : > > Message: 5 > > From: Olivier Coquet > > Organization: Serengeti > > To: gambas-user at lists.sourceforge.net > > Subject: Re: [Gambas-user] Maybe a bug with val functiun > > Date: Sat, 8 Nov 2003 18:03:29 +0100 > > Reply-To: gambas-user at lists.sourceforge.net > > > > Le Samedi 08 Novembre 2003 18:00, Olivier Coquet a =E9crit : > > > i think i've detected a bug in the Val() function gambas V0.71 on RH9 > > > > > > i'll try to be clare but........ > > > > > > if you use the val() function on a variable called num > > > like this: > > > > > > i=3Dval(num) > > > > > > if num is =3D to "123" all is ok, but if num=3D"ert" sometime this > > > result= > > > > in > > > > > NULL for i, sometime this result in an error mismatch date, num or > > > boolean expected. > > > > I think it's not the val funct which is bad but the > operator whic is=20 > > bad...... > > > > regards > > Olivier > > May be if you try RETURN (Cstr("")) instead of RETURN ("") > > I found a same problem when i fill a array with "" (emty strings) > arr=["","","",""] 'all entries are 'Null' > must corected to > arr=[Cstr(""),"","",""] all entries are now "" > > Gambas sees a variable preset with "" as Null in relational compares as > > anemtystring="" > IF anemptystring = "" THEN > print "this is empty" > ELSE > print "this is NULL" > ENDIF > > In Gambas, NULL and "" must be exactly the same thing. If you can make a difference, THIS is a bug ! I will check all comparison functions so that they behave as I wanted ! Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Sun Nov 9 18:37:56 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 9 Nov 2003 18:37:56 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311081800.14138.olinux@...289...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311080057.47929.leo.barnhoorn@...246...> <200311081800.14138.olinux@...289...> Message-ID: <200311091837.56925.gambas@...2...> Le Samedi 8 Novembre 2003 18:00, Olivier Coquet a ?crit : > i think i've detected a bug in the Val() function gambas V0.71 on RH9 > > i'll try to be clare but........ > > if you use the val() function on a variable called num > like this: > > i=val(num) > > if num is = to "123" all is ok, but if num="ert" sometime this result in > NULL for i, sometime this result in an error mismatch date, num or boolean > expected. > > i've seen that in a fct writed for my convenience I give you the complete > code to reproduct the error. > Note than if the fct is executed correctly for the first time, second time > never generate an error, and if the code is executed with error the first > time, second time generate allway an error.......!!!!! > > start of code.......... > > PUBLIC FUNCTION dte_conv(dte AS String, rev AS Boolean) AS String > ' Fonction de convertion de date, si rev = true format = bdd > ' si rev = false format ? la fran?aise > DIM m AS String > DIM j AS String > DIM y AS String > > m="" > j="" > y="" > > IF rev = FALSE THEN > > j = Left$(dte,2) > m = Mid$(dte,4,2) > y = Right$(dte,2) > > IF (Val(j) > 31) OR (Val(m) > 12)THEN > RETURN ("") > ELSE > RETURN (m & "-" & j & "-" & y) > ENDIF > > > ELSE > > m = Left$(dte,2) > j = Mid$(dte,4,2) > y = Right$(dte,2) > > > IF (Val(j) > 31) OR (Val(m) > 12)THEN > RETURN ("") > ELSE > RETURN (j & "-" & m & "-" & y) > ENDIF > > > > ENDIF > END > > ........end of code > > Regards > Olivier > Hi, Olivier. It's a pity that you don't give me more details to reproduce the bug. See my answer to Rob later too. Another point: if you want to start a new thread on the mailing-list, DON'T reply to a previous post ! Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Sun Nov 9 18:38:30 2003 From: gambas at ...2... (Benoit Minisini) Date: Sun, 9 Nov 2003 18:38:30 +0100 Subject: [Gambas-user] Need Help !!!! In-Reply-To: <200311090906.39409.olinux@...289...> References: <200311090806.33028.ronstk@...239...> <200311090906.39409.olinux@...289...> Message-ID: <200311091838.30543.gambas@...2...> Le Dimanche 9 Novembre 2003 09:06, Olivier Coquet a ?crit : > somebody can say me what is it???? > > a black windows at exec time saying me: > > WARNING: 2 allocation(s) not freed > > ?????? > > thanks and regards > Olivier > > This black window is just the text output of the program (standard output in Unix terms). -- Benoit Minisini mailto:gambas at ...1... From olinux at ...289... Mon Nov 10 06:51:54 2003 From: olinux at ...289... (Olivier Coquet) Date: Mon, 10 Nov 2003 06:51:54 +0100 Subject: [Gambas-user] Need Help !!!! In-Reply-To: <200311091838.30543.gambas@...2...> References: <200311090906.39409.olinux@...289...> <200311091838.30543.gambas@...2...> Message-ID: <200311100651.54804.olinux@...289...> Le Dimanche 9 Novembre 2003 18:38, Benoit Minisini a ?crit : > Le Dimanche 9 Novembre 2003 09:06, Olivier Coquet a ?crit : > > somebody can say me what is it???? > > > > a black windows at exec time saying me: > > > > WARNING: 2 allocation(s) not freed > > > > ?????? > > > > thanks and regards > > Olivier > > This black window is just the text output of the program (standard output > in Unix terms). lol !!!! I have understood this but what is: WARNING 2 all................... thanks olivier From olinux at ...289... Mon Nov 10 06:54:32 2003 From: olinux at ...289... (Olivier Coquet) Date: Mon, 10 Nov 2003 06:54:32 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311091837.56925.gambas@...2...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311081800.14138.olinux@...289...> <200311091837.56925.gambas@...2...> Message-ID: <200311100654.32591.olinux@...289...> Le Dimanche 9 Novembre 2003 18:37, Benoit Minisini a ?crit : > Le Samedi 8 Novembre 2003 18:00, Olivier Coquet a ?crit : > > PUBLIC FUNCTION dte_conv(dte AS String, rev AS Boolean) AS String > > ' Fonction de convertion de date, si rev = true format = bdd > > ' si rev = false format ? la fran?aise > > DIM m AS String > > DIM j AS String > > DIM y AS String > > > > m="" > > j="" > > y="" > > > > IF rev = FALSE THEN > > > > j = Left$(dte,2) > > m = Mid$(dte,4,2) > > y = Right$(dte,2) > > > > IF (Val(j) > 31) OR (Val(m) > 12)THEN > > RETURN ("") > > ELSE > > RETURN (m & "-" & j & "-" & y) > > ENDIF > > > > > > ELSE > > > > m = Left$(dte,2) > > j = Mid$(dte,4,2) > > y = Right$(dte,2) > > > > > > IF (Val(j) > 31) OR (Val(m) > 12)THEN > > RETURN ("") > > ELSE > > RETURN (j & "-" & m & "-" & y) > > ENDIF > > > > > > > > ENDIF > > END > > > > ........end of code > > > > Regards > > Olivier > > Hi, Olivier. > > It's a pity that you don't give me more details to reproduce the bug. See > my answer to Rob later too. try to call this function with arg="12.10.2003" an just after with arg ="aa.bb.cc" surprise !!!!! result will be: "bb.aa.cc" stop the prog try to call the function with arg = "aa.bb.cc" result will be an error !!!!! > Another point: if you want to start a new thread on the mailing-list, DON'T > reply to a previous post ! > > Regards, regards olivier From gambas at ...2... Mon Nov 10 09:03:08 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 10 Nov 2003 09:03:08 +0100 Subject: [Gambas-user] Need Help !!!! In-Reply-To: <200311100651.54804.olinux@...289...> References: <200311091838.30543.gambas@...2...> <200311100651.54804.olinux@...289...> Message-ID: <200311100903.08302.gambas@...2...> Le Lundi 10 Novembre 2003 06:51, Olivier Coquet a ?crit : > Le Dimanche 9 Novembre 2003 18:38, Benoit Minisini a ?crit : > > Le Dimanche 9 Novembre 2003 09:06, Olivier Coquet a ?crit : > > > somebody can say me what is it???? > > > > > > a black windows at exec time saying me: > > > > > > WARNING: 2 allocation(s) not freed > > > > > > ?????? > > > > > > thanks and regards > > > Olivier > > > > This black window is just the text output of the program (standard output > > in Unix terms). > > lol !!!! > I have understood this but what is: WARNING 2 all................... > > > thanks > olivier > It means that... two allocations were not freed - It is a memory leak, so it is a bug. Maybe you tried the HttpPost example ? Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Mon Nov 10 09:18:01 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 10 Nov 2003 09:18:01 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311100654.32591.olinux@...289...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311091837.56925.gambas@...2...> <200311100654.32591.olinux@...289...> Message-ID: <200311100918.01605.gambas@...2...> Le Lundi 10 Novembre 2003 06:54, Olivier Coquet a ?crit : > Le Dimanche 9 Novembre 2003 18:37, Benoit Minisini a ?crit : > > Le Samedi 8 Novembre 2003 18:00, Olivier Coquet a ?crit : > > > PUBLIC FUNCTION dte_conv(dte AS String, rev AS Boolean) AS String > > > ' Fonction de convertion de date, si rev = true format = bdd > > > ' si rev = false format ? la fran?aise > > > DIM m AS String > > > DIM j AS String > > > DIM y AS String > > > > > > m="" > > > j="" > > > y="" > > > > > > IF rev = FALSE THEN > > > > > > j = Left$(dte,2) > > > m = Mid$(dte,4,2) > > > y = Right$(dte,2) > > > > > > IF (Val(j) > 31) OR (Val(m) > 12)THEN > > > RETURN ("") > > > ELSE > > > RETURN (m & "-" & j & "-" & y) > > > ENDIF > > > > > > > > > ELSE > > > > > > m = Left$(dte,2) > > > j = Mid$(dte,4,2) > > > y = Right$(dte,2) > > > > > > > > > IF (Val(j) > 31) OR (Val(m) > 12)THEN > > > RETURN ("") > > > ELSE > > > RETURN (j & "-" & m & "-" & y) > > > ENDIF > > > > > > > > > > > > ENDIF > > > END > > > > > > ........end of code > > > > > > Regards > > > Olivier > > > > Hi, Olivier. > > > > It's a pity that you don't give me more details to reproduce the bug. See > > my answer to Rob later too. > > try to call this function with arg="12.10.2003" an just after with arg > ="aa.bb.cc" > > surprise !!!!! result will be: "bb.aa.cc" > > stop the prog > try to call the function with arg = "aa.bb.cc" result will be an error > !!!!! > > > Another point: if you want to start a new thread on the mailing-list, > > DON'T reply to a previous post ! > > > > Regards, > > regards > olivier > OK, Olivier, I think I understood what happens ! The implementation of the comparison operators (>, <, >= and <=) is just bad. I will rewrite it in the next version so that: "aaa" > NULL is equivalent to "aaa" > "" 34 > "33" raises an error. At the moment, 34 is automatically converted to "34". The behaviour you pointed may be strange for you. Actually, the first time a code is executed, the interpreter sometimes optimizes it by registering operands datatypes. So is the comparison operators. And there was a bug in Val() that should have returned a Variant and didn't... Well, some unexpected work for the next version :-) But thanks for having found this awful bug ! Regards, -- Benoit Minisini mailto:gambas at ...1... From olivier at ...289... Mon Nov 10 09:35:18 2003 From: olivier at ...289... (Olivier Coquet) Date: Mon, 10 Nov 2003 09:35:18 +0100 Subject: [Gambas-user] Need Help !!!! In-Reply-To: <200311100903.08302.gambas@...2...> References: <200311100651.54804.olinux@...289...> <200311100903.08302.gambas@...2...> Message-ID: <200311100935.18065.olivier@...289...> Le Lundi 10 Novembre 2003 09:03, Benoit Minisini a ?crit : > It means that... two allocations were not freed - It is a memory leak, so > it is a bug. Maybe you tried the HttpPost example ? sorry but no !!! I just open and close successively an mysql database :=(((((( regards Olivier From edward_cjhsu at ...253... Mon Nov 10 11:11:16 2003 From: edward_cjhsu at ...253... (Edward Hsu) Date: Mon, 10 Nov 2003 05:11:16 -0500 (EST) Subject: [Gambas-user] about process In-Reply-To: <200311091825.18401.gambas@...2...> Message-ID: <20031110101116.39688.qmail@...257...> Dear Benoit, Thanks for your answer and your beautiful job. I prefer that you keep the Process.send event, it is quite handy to have this event. And I also prefer the Process_Write event with argument sData. Any way we do need to read sData, why don't you keep it as is? so that we save a lot from getting sData by ourselves from LINE INPUT. Could you please consider this? Regards, Edward --------------------------------- Post your free ad now! Yahoo! Canada Personals -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas at ...2... Mon Nov 10 14:53:48 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 10 Nov 2003 14:53:48 +0100 Subject: [Gambas-user] about process In-Reply-To: <20031110101116.39688.qmail@...257...> References: <20031110101116.39688.qmail@...257...> Message-ID: <200311101453.48772.gambas@...2...> Le Lundi 10 Novembre 2003 11:11, Edward Hsu a ?crit : > Dear Benoit, > > Thanks for your answer and your beautiful job. > > I prefer that you keep the Process.send event, it is quite handy to have > this event. Process.Send is not an event, but a method. > > And I also prefer the Process_Write event with argument sData. Any way we > do need to read sData, why don't you keep it as is? so that we save a lot > from getting sData by ourselves from LINE INPUT. Could you please consider > this? I change all the Process class behaviour because I want to centralize every input-output functions in the interpreter, so that I can easily add new features: blocking/non-blocking I/O, buffered/non-bufferd I/O, whatever the stream is. The Process class is not alone. The ClientSocket class of the network component will become a stream too ! So I'm afraid you will be compeled to change your habits :-), even if you find the previous Process interface more practical - I'm not sure that everyone will agree with you... > > Regards, > > Edward > Regards, -- Benoit Minisini mailto:gambas at ...1... From danielcampos at ...282... Mon Nov 10 15:06:19 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Mon, 10 Nov 2003 15:06:19 CET Subject: [Gambas-user] Bug in constructor? Message-ID: Hi, Beno?t (and company)! I was trying to add an optional parameter for 'Socket' constructor, so I did it in that way: _new method: BEGIN_METHOD(CSOCKET_new,GB_STRING sPath;) /* some stuff */ if (STRING(sPath)) { printf("sPath! --> %s\n",STRING(sPath)); } END_METHOD And in method definition: ... GB_METHOD("_new", NULL, CSOCKET_new, "[(sPath)s]"), ... Well, I created a little test program : Private MySock As Socket .... Public Sub Button1_Click() MySock=New Socket("teststring") As "MySock" End Sub Well, after executing it, OK, it appears "teststring" at console (see _new method), but then I changed it to see if it really was an optional parameter: MySock=New Socket As "MySock" To my surprise it appeared it console "MySock", that is, the event handler was passed like a parameter to the constructor! I also tried MySock=New Socket() As "MySock" but It didn't work at all (Syntax error) ... Regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From gambas at ...2... Mon Nov 10 15:21:13 2003 From: gambas at ...2... (Benoit Minisini) Date: Mon, 10 Nov 2003 15:21:13 +0100 Subject: [Gambas-user] Bug in constructor? In-Reply-To: References: Message-ID: <200311101521.13623.gambas@...2...> Le Lundi 10 Novembre 2003 19:06, danielcampos at ...282... a ?crit : > Hi, Beno?t (and company)! > > I was trying to add an optional parameter for 'Socket' constructor, so > I did it in that way: > > _new method: > > BEGIN_METHOD(CSOCKET_new,GB_STRING sPath;) > > /* some stuff */ > > if (STRING(sPath)) > { > printf("sPath! --> %s\n",STRING(sPath)); > } > > END_METHOD > > And in method definition: > > ... > GB_METHOD("_new", NULL, CSOCKET_new, "[(sPath)s]"), > ... > > > Well, I created a little test program : > > Private MySock As Socket > .... > Public Sub Button1_Click() > > MySock=New Socket("teststring") As "MySock" > > End Sub > > Well, after executing it, OK, it appears "teststring" at console (see _new > method), but then I changed it to see if it really was an optional > parameter: > > MySock=New Socket As "MySock" > > To my surprise it appeared it console "MySock", that is, the event handler > was passed like a parameter to the constructor! > > I also tried MySock=New Socket() As "MySock" but It didn't work > at all (Syntax error) > > ... > > Regards, > > Daniel Campos > > Hi, Daniel This mail should go on the devel mailing-list ! You must test optional argument with the MISSING macro. BEGIN_METHOD(CSOCKET_new,GB_STRING sPath;) /* some stuff */ if (!MISSING(sPath)) { if (STRING(sPath)) { printf("sPath! --> %s\n",STRING(sPath)); } } END_METHOD Without this test, you saw the "event name" of the object, because it is pushed on the interpreter stack just after method arguments ! Regards, -- Benoit Minisini mailto:gambas at ...1... From olivier at ...289... Mon Nov 10 15:27:29 2003 From: olivier at ...289... (Olivier Coquet) Date: Mon, 10 Nov 2003 15:27:29 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311100918.01605.gambas@...2...> References: <200311071638.49142.sourceforge-raindog2@...94...> <200311100654.32591.olinux@...289...> <200311100918.01605.gambas@...2...> Message-ID: <200311101527.29747.olivier@...289...> > The behaviour you pointed may be strange for you. Actually, the first time > a code is executed, the interpreter sometimes optimizes it by registering > operands datatypes. So is the comparison operators. And there was a bug in > Val() that should have returned a Variant and didn't... > > Well, some unexpected work for the next version :-) But thanks for having > found this awful bug ! > > Regards, another bug in the same function, try to call this function with arg = "00-00-00" and the resul is ramdom number :=) funny :=) regards and good work bennoit Olivier From leo.barnhoorn at ...246... Tue Nov 11 08:37:04 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Mon, 10 Nov 2003 23:37:04 -0800 Subject: [Gambas-user] DrawingArea and Draw. Message-ID: <200311102337.04707.leo.barnhoorn@...246...> Hallo Benoit, I have a problem whit Draw. If i use Draw.ForeColor this is OK, but when i make use of the Draw.BackColor it is not working at all. Draw.Begin(hConsole) ' DrawingArea Draw.BackColor = Color.Black Draw.ForeColor = Color.LightGray Draw.Font.Name = "Misc Console" Draw.Font.Size = 8 INC iRow | iYPos = iRow * Draw.TextHeight(sChar) | | Draw.Text(sChar, iXPos, iYPos) |------- This part is in a loop. INC iCol | iXPos = iCol * Draw.TextWidth(sChar) | Draw.End When i change the BackColor in the loop then it will not set. Draw.BackColor = Color.Blue How can i properly use the Draw.BackColor. Regards, Leo Barnhoorn. From ronstk at ...239... Tue Nov 11 00:44:22 2003 From: ronstk at ...239... (ron) Date: Tue, 11 Nov 2003 00:44:22 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: References: Message-ID: <200311110044.23045.ronstk@...239...> > > > > May be if you try RETURN (Cstr("")) instead of RETURN ("") > > > > I found a same problem when i fill a array with "" (emty strings) > > arr=3D["","","",""] 'all entries are 'Null' > > must corected to > > arr=3D[Cstr(""),"","",""] all entries are now gb.String (v0.65) > > > > Gambas sees a variable preset with "" as Null in relational compares as > > > > anemtystring=3D"" > > IF anemptystring =3D "" THEN > > print "this is empty" > > ELSE > > print "this is NULL" > > ENDIF > > In Gambas, NULL and "" must be exactly the same thing. If you can make a=20 > difference, THIS is a bug ! I think this is the case and so it's true but there can be an exception. > > I will check all comparison functions so that they behave as I wanted ! > > Regards, > > =2D-=20 > Benoit Minisini > mailto:gambas at ...1... > Hi Benoit, It is a mess with those html/=3D stuff. I need a array preset with "" like arr=["","","",""] and this was not posible. The array arr is a String[] and will add later to a Variant[] array. As in the help about arrays you say the first element determines the type of the following entries. In the case of the first element was a "" wich is equal as Null my array was all with Null. I asume all entries are then gb.Null Changing the first element to use CStr("") resolves the problem and all elements in the array are default type of gb.String with a content of Null. In the program there are string operations with these cells and they didn't accept it at the time i used 0.63 and giving me typecast errors. Putting something in the first string instead of CStr("") did work too. Note: I just removed the work around and tried again. In v0.71 i get "program returned 1' and aborts for the arr=["","",""] case. Not given a clue where it aborts. See below at end. ---- Sample program for test in v071: PUBLIC SUB Main() 'for exmpl1 DIM sTxt AS String 'for exmpl2 DIM avR AS Variant[] ' rows for the table DIM asC AS String[] 'columns for the table avR=NEW Variant[] 'exmpl1 sTxt="" IF sTxt = "" THEN PRINT "is null" ELSE PRINT "isempty" ENDIF 'This follows your rule and should be Ok. 'exmple2 PRINT "++++++++++" ' asC=["","",""] ' abort program with mesage "program returned value 1" ' the above line did pass in 0.65 and sets all entries to Null asC=["p","",""] 'this goes ok avR.add ( asC, 0 ) asC=[CStr(""),"",""] avR.add ( asC, 1 ) asC=[CStr(""),NULL,NULL] avR.add ( asC, 2 ) show( avR[0] ) show( avR[1] ) show( avR[2] ) END PUBLIC SUB show (arr AS Variant) DIM x AS Integer PRINT "-----------------" FOR x=0 TO 2 PRINT x ,"#" & arr[x] & "#", TypeOf(arr[x]) ' returns '15' for last 2 NEXT END Resulting in '8=gb.String, 10= gb.Variant, 15=gb.Null, 16=gb.Object ----------------- 0 #p# 8 1 ## 15 2 ## 15 ----------------- 0 ## 15 1 ## 15 2 ## 15 ----------------- 0 ## 15 1 ## 15 2 ## 15 Second proof it is true. For the Val() function I did a test as follows in the console: ? val("2e3") is 2000 ? val("&h20") is 32 ? 2^4 is 16 ? typeof(2^4) is 6 gb.Float ? typeof("2^4") is 8 gb.String ? val("2^4") is Null Is this correct, how to give a number to power as i.e. 2^4 ? If &H as prefix for hexadecimal radix works maybe this should work too. ? typeof( cstr("") ) is Null should be gb.String as I asked for with CStr() ? ? typeof(clng(8)) Type mismatch: wanted Long, got Integer instead ? clng(8) Type mismatch: wanted Long, got Integer instead So Long is known here DIM lNum AS Long DIM iNum AS Integer iNum=8 lNum= CLng(iNum) Type mismatch: wanted Long, got Integer instead Oops, looking in the help CLng is gone? The Editor knows about it and adjust the case. In the console Long is also known. I had to use Float but the DIM gives also no error. DIM var as Long and CLng exist in editor For the note above here the code from real program PUBLIC arrGrid Variant[] PUBLIC SUB Grid_AddCol() DIM argdat AS String[] DIM y AS Integer y=0 '*** here I set the breakpoint for stepping argdat =["","","","","","","",""] '*** I get 'program returned 1' mesage ' argdat =[CStr(""),"","","","","","",""] ' *** this is my work around FOR y = argdat.count TO rowhead.count-1 'range can be 8...16 rows argdat.add("") ' add row cell *** is now acepted in 0.71, not in 0.65? ' argdat.add(CStr("")) ' make row data *** workaround NEXT argdat[enVIS]="Yes" arrGrid.Add(argdat) 'add to column variant[] END And here is the exception maybe. In both cases "" and CStr("") the TypeOf() are gb.Null but setting the argdat does not acept the first one. As far I remember in 0.65 there was a error mesage and now in 0.71 the 'return 1' mesage. My Gambas version during this test was 0.71 Hope this give some support back about it, grts Ron (wikiron) From olivier at ...289... Tue Nov 11 08:12:23 2003 From: olivier at ...289... (Olivier Coquet) Date: Tue, 11 Nov 2003 08:12:23 +0100 Subject: [Gambas-user] Convertion bug or problemm undestood !!! Message-ID: <200311110812.23616.olivier@...289...> i've understood a problem with conversion date folow me in mysql database date is stored with this format: mm/dd/yy when i get a date value from db to put it in a text area form field a convert it with cdate cdate(madate) => dd/mm/yy when i modify it and want to store it in my data base i try to reconvert it as good format with Format$ Format$(madate,"mm/dd/yy") but it does not work because madate is note a valid format for Format$ Function. Format$ is not reversing I think it's iportant to implement this in the future 0.72 version of gambas. regards Olivier From olivier at ...289... Tue Nov 11 08:31:01 2003 From: olivier at ...289... (Olivier Coquet) Date: Tue, 11 Nov 2003 08:31:01 +0100 Subject: [Gambas-user] Convertion bug or problemm undestood !!! In-Reply-To: <200311110812.23616.olivier@...289...> References: <200311110812.23616.olivier@...289...> Message-ID: <200311110831.01619.olivier@...289...> another funcition would be implemented for convenience in futur 0.72 all con functions (CDate, Format$, etc.....) must return a NULL char or "" string if the result can't be obtened ex: CDate("toto") => NULL actualy CDate ("toto") => error type mismatch regards Olivier From gambas at ...2... Tue Nov 11 14:25:39 2003 From: gambas at ...2... (Benoit Minisini) Date: Tue, 11 Nov 2003 14:25:39 +0100 Subject: [Gambas-user] Convertion bug or problemm undestood !!! In-Reply-To: <200311110812.23616.olivier@...289...> References: <200311110812.23616.olivier@...289...> Message-ID: <200311111425.39186.gambas@...2...> Le Mardi 11 Novembre 2003 08:12, Olivier Coquet a ?crit : > i've understood a problem with conversion date > > folow me > > in mysql database date is stored with this format: > > mm/dd/yy > > when i get a date value from db to put it in a text area form field a > convert it with cdate > cdate(madate) => dd/mm/yy > > when i modify it and want to store it in my data base i try to reconvert it > as good format with Format$ > > Format$(madate,"mm/dd/yy") > > but it does not work because madate is note a valid format for Format$ > Function. > > Format$ is not reversing > > I think it's iportant to implement this in the future 0.72 version of > gambas. > > regards > Olivier > > If you read a date from a MySQL database, you get a Date value. You don't know what format use mysql use to store its date values internally. If you want to put a date into a text field, just do: MyTextBox.Text = Str(MyDate) You should not use your own format, but let the localization system do it for you. (See the Format$() documentation) If you want to put the text field in the database, just do: MyVariant = Val(MyTextBox.Text) IF IsDate(MyVariant) THEN MyDate = MyVariant You must not use CDate() and CStr() functions, because these functions do not use the localization settings ! Be careful ! This is the contrary in VB, and it's more coherent in Gambas, which DO NOT CLONE Visual Basic when Visual Basic are a bit stupid. Read the documentation carefully ! Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...2... Tue Nov 11 14:27:24 2003 From: gambas at ...2... (Benoit Minisini) Date: Tue, 11 Nov 2003 14:27:24 +0100 Subject: [Gambas-user] Convertion bug or problemm undestood !!! In-Reply-To: <200311110831.01619.olivier@...289...> References: <200311110812.23616.olivier@...289...> <200311110831.01619.olivier@...289...> Message-ID: <200311111427.24072.gambas@...2...> Le Mardi 11 Novembre 2003 08:31, Olivier Coquet a ?crit : > another funcition would be implemented for convenience in futur 0.72 > > all con functions (CDate, Format$, etc.....) must return a NULL char or "" > string if the result can't be obtened > > ex: > > CDate("toto") => NULL > > actualy CDate ("toto") => error type mismatch > > > regards > Olivier > Bad idea, because NULL is a valid value in some cases. CStr("") => "" or NULL (it is the same value). Why are you afraid when the interpreter raise errors ? Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 11 14:33:49 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 11 Nov 2003 14:33:49 +0100 Subject: [Gambas-user] Maybe a bug with val functiun In-Reply-To: <200311110044.23045.ronstk@...239...> References: <200311110044.23045.ronstk@...239...> Message-ID: <200311111433.49342.gambas@...1...> Le Mardi 11 Novembre 2003 00:44, ron a ?crit : > > > May be if you try RETURN (Cstr("")) instead of RETURN ("") > > > > > > I found a same problem when i fill a array with "" (emty strings) > > > arr=3D["","","",""] 'all entries are 'Null' > > > must corected to > > > arr=3D[Cstr(""),"","",""] all entries are now gb.String (v0.65) > > > > > > Gambas sees a variable preset with "" as Null in relational compares as > > > > > > anemtystring=3D"" > > > IF anemptystring =3D "" THEN > > > print "this is empty" > > > ELSE > > > print "this is NULL" > > > ENDIF > > > > In Gambas, NULL and "" must be exactly the same thing. If you can make > > a=20 difference, THIS is a bug ! > > I think this is the case and so it's true but there can be an exception. > > > I will check all comparison functions so that they behave as I wanted ! > > > > Regards, > > > > =2D-=20 > > Benoit Minisini > > mailto:gambas at ...1... > > Hi Benoit, > It is a mess with those html/=3D stuff. > > I need a array preset with "" like arr=["","","",""] and this was not > posible. The array arr is a String[] and will add later to a Variant[] > array. > > As in the help about arrays you say the first element determines the type > of the following entries. > In the case of the first element was a "" wich is equal as Null my array > was all with Null. I asume all entries are then gb.Null > Changing the first element to use CStr("") resolves the problem and all > elements in the array are default type of gb.String with a content of Null. > In the program there are string operations with these cells and they didn't > accept it at the time i used 0.63 and giving me typecast errors. > Hi, Ron. I'm sorry, this is a stupid bug in the Array() or [...] function. Doing [""] will create a unusable array instead of creating a String array ! I will correct it in the next version... Regards, -- Benoit Minisini mailto:gambas at ...1... From olivier at ...289... Tue Nov 11 17:40:35 2003 From: olivier at ...289... (Olivier Coquet) Date: Tue, 11 Nov 2003 17:40:35 +0100 Subject: [Gambas-user] Convertion bug or problemm undestood !!! In-Reply-To: <200311111427.24072.gambas@...2...> References: <200311110812.23616.olivier@...289...> <200311110831.01619.olivier@...289...> <200311111427.24072.gambas@...2...> Message-ID: <200311111740.35404.olivier@...289...> Le Mardi 11 Novembre 2003 14:27, Benoit Minisini a ?crit : > Why are you afraid when the interpreter raise errors ? > > Regards, Because it's not possible to have a good gestion on error, if i use CATCH all errors are catched and it's not my goal. if the function return me an empty string I can Act with another code to correct this problem durring execution without brocking my code. Regards Olivier From gambas at ...1... Tue Nov 11 20:27:22 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 11 Nov 2003 20:27:22 +0100 Subject: [Gambas-user] Convertion bug or problemm undestood !!! In-Reply-To: <200311111740.35404.olivier@...289...> References: <200311110812.23616.olivier@...289...> <200311111427.24072.gambas@...2...> <200311111740.35404.olivier@...289...> Message-ID: <200311112027.22678.gambas@...1...> Le Mardi 11 Novembre 2003 17:40, Olivier Coquet a ?crit : > Le Mardi 11 Novembre 2003 14:27, Benoit Minisini a ?crit : > > Why are you afraid when the interpreter raise errors ? > > > > Regards, > > Because it's not possible to have a good gestion on error, if i use CATCH > all errors are catched and it's not my goal. > > if the function return me an empty string I can Act with another code to > correct this problem durring execution without brocking my code. > > Regards > Olivier > If you want this behaviour, you can do something like that: DIM vVal AS Variant DIM sData AS String ' If the following statement fails, then vVal will keep its default value ' that is NULL TRY vVal = Val(sData) RETURN vVal I know that this is not the standard Basic behaviour, but Gambas ALMOST means Basic! :-) Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 11 20:42:16 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 11 Nov 2003 20:42:16 +0100 Subject: [Gambas-user] Mouse event problem In-Reply-To: <200310140931.09111.ronstk@...239...> References: <200310140931.09111.ronstk@...239...> Message-ID: <200311112042.16782.gambas@...1...> Le Mardi 14 Octobre 2003 09:31, ron a ?crit : > Hi Beboit, > > I have a listbox with multi select enabled. When I select some items and > click with the right mouse button for the popup Menu then the mark state > for the item where the mouse is over reverse. > The function I want to use is to select some items in the listbox and then > on the popup menu make a selection what to do with them. > > According the KDE Standards at > http://developer.kde.org/documentation/standards/kde/style/mouse/index.html > Right Button: > If the clicked object is marked, it does not change any of the marks. > If the clicked object is not marked, the object is marked and any other > objects are unmarked. > Then a popup menu (RMB-menu) appears where the user has clicked. > The RMB-menu contains the most important actions available for the marked > object(s). > > When I am right they are talking here in the situation of multi selection. > Konqueror as filemanager works this way. > > As described it should mark but no unmark the item, as it does now, and > unmark the other marked if the item is not marked, as it does not. > Is this posible a small bug? It's now difficult to use the popup menu for > me. > > ------- > grts Ron > > Hi, Ron, I modifed the ListBox QT widget so that it does not respond to the mouse right button anymore. You will have this fix in the 0.72. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 11 20:46:49 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 11 Nov 2003 20:46:49 +0100 Subject: [Gambas-user] DrawingArea and Draw. In-Reply-To: <200311102337.04707.leo.barnhoorn@...246...> References: <200311102337.04707.leo.barnhoorn@...246...> Message-ID: <200311112046.49322.gambas@...1...> Le Mardi 11 Novembre 2003 08:37, Leo Barnhoorn a ?crit : > Hallo Benoit, Hi, Leo, > > I have a problem whit Draw. If i use Draw.ForeColor this is OK, but when i > make use of the Draw.BackColor it is not working at all. > > Draw.Begin(hConsole) ' DrawingArea > Draw.BackColor = Color.Black > Draw.ForeColor = Color.LightGray > Draw.Font.Name = "Misc Console" > Draw.Font.Size = 8 > > INC iRow | > iYPos = iRow * Draw.TextHeight(sChar) | > > Draw.Text(sChar, iXPos, iYPos) |------- This part is in a loop. > INC iCol | > iXPos = iCol * Draw.TextWidth(sChar) | > > Draw.End > > When i change the BackColor in the loop then it will not set. > > Draw.BackColor = Color.Blue > > How can i properly use the Draw.BackColor. > > Regards, > Leo Barnhoorn. > > Could you send me your complete project, as it can be a subtle bug ? Regards, -- Benoit Minisini mailto:gambas at ...1... From leo.barnhoorn at ...246... Wed Nov 12 06:08:01 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Tue, 11 Nov 2003 21:08:01 -0800 Subject: [Gambas-user] DrawingArea and Draw. In-Reply-To: <200311112046.49322.gambas@...1...> References: <200311102337.04707.leo.barnhoorn@...246...> <200311112046.49322.gambas@...1...> Message-ID: <200311112108.01546.leo.barnhoorn@...246...> Hallo Benoit, Thanks, you want to look in to it, this is just the starting face. I try to translate it from a PowerBasic source i wrote 10 years ago. Regards, Leo Barnhoorn. On Tuesday 11 November 2003 11:46, Benoit Minisini wrote: > Le Mardi 11 Novembre 2003 08:37, Leo Barnhoorn a ?crit : > > Hallo Benoit, > > Hi, Leo, > > > I have a problem whit Draw. If i use Draw.ForeColor this is OK, but when > > i make use of the Draw.BackColor it is not working at all. > > > > Draw.Begin(hConsole) ' DrawingArea > > Draw.BackColor = Color.Black > > Draw.ForeColor = Color.LightGray > > Draw.Font.Name = "Misc Console" > > Draw.Font.Size = 8 > > > > INC iRow | > > iYPos = iRow * Draw.TextHeight(sChar) | > > > > Draw.Text(sChar, iXPos, iYPos) |------- This part is in a loop. > > INC iCol | > > iXPos = iCol * Draw.TextWidth(sChar) | > > > > Draw.End > > > > When i change the BackColor in the loop then it will not set. > > > > Draw.BackColor = Color.Blue > > > > How can i properly use the Draw.BackColor. > > > > Regards, > > Leo Barnhoorn. > > Could you send me your complete project, as it can be a subtle bug ? > > Regards, -------------- next part -------------- A non-text attachment was scrubbed... Name: magicbbs.tar.gz Type: application/x-tgz Size: 9957 bytes Desc: not available URL: From sourceforge-raindog2 at ...94... Wed Nov 12 00:31:46 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Tue, 11 Nov 2003 18:31:46 -0500 Subject: [Gambas-user] Convertion bug or problemm undestood !!! In-Reply-To: <200311112027.22678.gambas@...1...> References: <200311110812.23616.olivier@...289...> <200311111740.35404.olivier@...289...> <200311112027.22678.gambas@...1...> Message-ID: <200311111831.46517.sourceforge-raindog2@...94...> On Tuesday 11 November 2003 14:27, Benoit Minisini wrote: > TRY vVal = Val(sData) > RETURN vVal > > I know that this is not the standard Basic behaviour, but > Gambas ALMOST means Basic! :-) Shouldn't IsNumber() be used in this particular case? Rob From leo.barnhoorn at ...246... Thu Nov 13 03:42:34 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Wed, 12 Nov 2003 18:42:34 -0800 Subject: [Gambas-user] Networking 0.0.15 In-Reply-To: <1068060461.2444.7.camel@...278...> References: <1068060461.2444.7.camel@...278...> Message-ID: <200311121842.34999.leo.barnhoorn@...246...> Hallo Daniel, The Networking component version 0.0.15 give a error when i run make install The error is (undefined symbol: CHttpClientDesc) This error comes when Creating the library info files. Version 0.0.14 is working OK. Regards, Leo Barnhoorn. On Wednesday 05 November 2003 11:27, Daniel Campos wrote: > Hi! > > Here's 0.0.15 release of networking component: > > * UNIX sockets in ServerSocket has been implemented, > so now you can act both as TCP or UNIX server. > > * POST method in HttpClient has been implemented, some > bugs in GET method has been fixed. > > * G1 and G2 examples has been updated to alow test > UNIX sockets. > > * A new example, http_post, shows an example of HTTP POST > method, and an example of XML-RPC working, calling > a sample server placed at Sourceforge. It is a also > an example of how many technology need modern people > to perform simple tasks. Pitagoras never dreamed what > your gonna see in that example. > > Best regards, > > Daniel Campos From danielcampos at ...277... Wed Nov 12 20:10:07 2003 From: danielcampos at ...277... (daniel) Date: Wed, 12 Nov 2003 19:10:07 +0000 Subject: [Gambas-user] Networking 0.0.15 In-Reply-To: <200311121842.34999.leo.barnhoorn@...246...> References: <1068060461.2444.7.camel@...278...> <200311121842.34999.leo.barnhoorn@...246...> Message-ID: <1068664207.2230.1.camel@...278...> Hi Leo: Just wait some days as now I'm finishing definitive interface for Net component, and lot of things have changed in that time... Regards, Daniel Campos El jue, 13-11-2003 a las 02:42, Leo Barnhoorn escribi?: > Hallo Daniel, > > The Networking component version 0.0.15 give a error when i run make install > The error is (undefined symbol: CHttpClientDesc) > This error comes when Creating the library info files. > > Version 0.0.14 is working OK. > > Regards, > Leo Barnhoorn. > > > On Wednesday 05 November 2003 11:27, Daniel Campos wrote: > > Hi! > > > > Here's 0.0.15 release of networking component: > > > > * UNIX sockets in ServerSocket has been implemented, > > so now you can act both as TCP or UNIX server. > > > > * POST method in HttpClient has been implemented, some > > bugs in GET method has been fixed. > > > > * G1 and G2 examples has been updated to alow test > > UNIX sockets. > > > > * A new example, http_post, shows an example of HTTP POST > > method, and an example of XML-RPC working, calling > > a sample server placed at Sourceforge. It is a also > > an example of how many technology need modern people > > to perform simple tasks. Pitagoras never dreamed what > > your gonna see in that example. > > > > Best regards, > > > > Daniel Campos > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From leo.barnhoorn at ...246... Thu Nov 13 04:37:50 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Wed, 12 Nov 2003 19:37:50 -0800 Subject: [Gambas-user] Networking 0.0.15 In-Reply-To: <1068664207.2230.1.camel@...278...> References: <1068060461.2444.7.camel@...278...> <200311121842.34999.leo.barnhoorn@...246...> <1068664207.2230.1.camel@...278...> Message-ID: <200311121937.50430.leo.barnhoorn@...246...> Hallo Daniel, Yes of course, do not hurry for me easy on. I like it to match what you are doing. Thanks. Regards, Leo Barnhoorn. On Wednesday 12 November 2003 11:10, daniel wrote: > Hi Leo: > > Just wait some days as now I'm finishing definitive > interface for Net component, and lot of things have > changed in that time... > > Regards, > > Daniel Campos > > El jue, 13-11-2003 a las 02:42, Leo Barnhoorn escribi?: > > Hallo Daniel, > > > > The Networking component version 0.0.15 give a error when i run make > > install The error is (undefined symbol: CHttpClientDesc) > > This error comes when Creating the library info files. > > > > Version 0.0.14 is working OK. > > > > Regards, > > Leo Barnhoorn. > > > > On Wednesday 05 November 2003 11:27, Daniel Campos wrote: > > > Hi! > > > > > > Here's 0.0.15 release of networking component: > > > > > > * UNIX sockets in ServerSocket has been implemented, > > > so now you can act both as TCP or UNIX server. > > > > > > * POST method in HttpClient has been implemented, some > > > bugs in GET method has been fixed. > > > > > > * G1 and G2 examples has been updated to alow test > > > UNIX sockets. > > > > > > * A new example, http_post, shows an example of HTTP POST > > > method, and an example of XML-RPC working, calling > > > a sample server placed at Sourceforge. It is a also > > > an example of how many technology need modern people > > > to perform simple tasks. Pitagoras never dreamed what > > > your gonna see in that example. > > > > > > Best regards, > > > > > > Daniel Campos > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: ApacheCon 2003, > > 16-19 November in Las Vegas. Learn firsthand the latest > > developments in Apache, PHP, Perl, XML, Java, MySQL, > > WebDAV, and more! http://www.apachecon.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Wed Nov 12 19:58:03 2003 From: gambas at ...1... (Benoit Minisini) Date: Wed, 12 Nov 2003 19:58:03 +0100 Subject: [Gambas-user] Convertion bug or problemm undestood !!! In-Reply-To: <200311111831.46517.sourceforge-raindog2@...94...> References: <200311110812.23616.olivier@...289...> <200311112027.22678.gambas@...1...> <200311111831.46517.sourceforge-raindog2@...94...> Message-ID: <200311121958.03808.gambas@...1...> Le Mercredi 12 Novembre 2003 00:31, Rob a ?crit : > On Tuesday 11 November 2003 14:27, Benoit Minisini wrote: > > TRY vVal = Val(sData) > > RETURN vVal > > > > I know that this is not the standard Basic behaviour, but > > Gambas ALMOST means Basic! :-) > > Shouldn't IsNumber() be used in this particular case? > > Rob > > You can, but using TRY is faster than doing the test yourself in Gambas ! Except if the case where the TRY fails happens the more frequently. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Wed Nov 12 23:34:38 2003 From: gambas at ...1... (Benoit Minisini) Date: Wed, 12 Nov 2003 23:34:38 +0100 Subject: [Gambas-user] DrawingArea and Draw. In-Reply-To: <200311112108.01546.leo.barnhoorn@...246...> References: <200311102337.04707.leo.barnhoorn@...246...> <200311112046.49322.gambas@...1...> <200311112108.01546.leo.barnhoorn@...246...> Message-ID: <200311122334.38834.gambas@...1...> Le Mercredi 12 Novembre 2003 06:08, Leo Barnhoorn a ?crit : > Hallo Benoit, > > Thanks, you want to look in to it, this is just the starting face. I try to > translate it from a PowerBasic source i wrote 10 years ago. > > Regards, > Leo Barnhoorn. > > On Tuesday 11 November 2003 11:46, Benoit Minisini wrote: > > Le Mardi 11 Novembre 2003 08:37, Leo Barnhoorn a ?crit : > > > Hallo Benoit, > > > > Hi, Leo, > > > > > I have a problem whit Draw. If i use Draw.ForeColor this is OK, but > > > when i make use of the Draw.BackColor it is not working at all. > > > > > > Draw.Begin(hConsole) ' DrawingArea > > > Draw.BackColor = Color.Black > > > Draw.ForeColor = Color.LightGray > > > Draw.Font.Name = "Misc Console" > > > Draw.Font.Size = 8 > > > > > > INC iRow | > > > iYPos = iRow * Draw.TextHeight(sChar) | > > > > > > Draw.Text(sChar, iXPos, iYPos) |------- This part is in a loop. > > > INC iCol | > > > iXPos = iCol * Draw.TextWidth(sChar) | > > > > > > Draw.End > > > > > > When i change the BackColor in the loop then it will not set. > > > > > > Draw.BackColor = Color.Blue > > > > > > How can i properly use the Draw.BackColor. > > > > > > Regards, > > > Leo Barnhoorn. I think you forgot to set Draw.Transparent to FALSE. The text is transparent by default - This is the most common use when you draw text. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Wed Nov 12 23:36:19 2003 From: gambas at ...1... (Benoit Minisini) Date: Wed, 12 Nov 2003 23:36:19 +0100 Subject: [Gambas-user] Little Array problem In-Reply-To: <000001c37a03$0d1b7660$2101a8c0@...240...> References: <000001c37a03$0d1b7660$2101a8c0@...240...> Message-ID: <200311122336.19125.gambas@...1...> Le Samedi 13 Septembre 2003 16:26, R Onstenk a ?crit : > in my code i have: > > 'global > PRIVATE argdat as string[] > private argset as variant[] > > PUBLIC SUB MyInit() > argdat = ["","","","","yes",""] 'first column > > for i=0 to iColumns > argset.add(argdat,i) > argdat = ["","","","","no",""] 'second to last > END > > The problem is the first element in the argdat array. > It must be a "" empty string. The MyInit set a matrix > of strings that are handled by code to contain selected > data. The offset in the argdat is the index for values > ranges that can be used. > With this initial value I get 'The program has returned the value: 1' > > > --- > Ron > > I think this is the string array bug I will fix in the 0.72 version. Regards, -- Benoit Minisini mailto:gambas at ...1... From leo.barnhoorn at ...246... Thu Nov 13 08:55:58 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Wed, 12 Nov 2003 23:55:58 -0800 Subject: [Gambas-user] DrawingArea and Draw. In-Reply-To: <200311122334.38834.gambas@...1...> References: <200311102337.04707.leo.barnhoorn@...246...> <200311112108.01546.leo.barnhoorn@...246...> <200311122334.38834.gambas@...1...> Message-ID: <200311122355.58827.leo.barnhoorn@...246...> Hallo Benoit, YES Thanks, this is working. Regards, Leo Barnhoorn. On Wednesday 12 November 2003 14:34, Benoit Minisini wrote: > > I think you forgot to set Draw.Transparent to FALSE. The text is > transparent by default - This is the most common use when you draw text. > > Regards, From t4nu at ...103... Thu Nov 13 03:14:31 2003 From: t4nu at ...103... (t4nu) Date: Thu, 13 Nov 2003 09:14:31 +0700 Subject: [Gambas-user] how to use host property with IP address? Message-ID: <200311130914.32097.t4nu@...103...> Hi all.... how to make a connection to mysql in other computer at the same local area network ? does anyone knows..? set host = ? thank's From olivier at ...289... Thu Nov 13 06:59:48 2003 From: olivier at ...289... (Olivier Coquet) Date: Thu, 13 Nov 2003 06:59:48 +0100 Subject: [Gambas-user] how to use host property with IP address? In-Reply-To: <200311130914.32097.t4nu@...103...> References: <200311130914.32097.t4nu@...103...> Message-ID: <200311130659.48964.olivier@...289...> Le Jeudi 13 Novembre 2003 03:14, t4nu a ?crit : > Hi all.... > how to make a connection to mysql in other computer at > the same local area network ? > does anyone knows..? > > set host = ? > > thank's PUBLIC DB AS NEW Connection ' inititiate a DB connection DIM rResult AS Result ' rResult type of Result for storing sql query results DB.Type = "mysql" ' type of sql databas DB.Name = "mybase" ' name of the base (not the table) DB.Login = "mylogin" ' login name as set in database autorized user DB.Password = "mypassword" 'password for this user DB.Host = "thehostIP" ' IP adress of the server DB.Port = "3306" ' Port number to connect, usualy 3306 DB.Open ' to open database connection DB.Close to close database connection regards Olivier From olivier at ...289... Thu Nov 13 10:41:09 2003 From: olivier at ...289... (Olivier Coquet) Date: Thu, 13 Nov 2003 10:41:09 +0100 Subject: [Gambas-user] ARghhhhhhhhhhhh!!!! Message-ID: <200311131041.09938.olivier@...289...> Helpppppppppppppp!!!!!!!!!! Gambas 0.71 on Fedora core 1 Dim t as integer Dim s as integer t= 9 s = 2 print t/s =====> 4 ??????????? whats wrong, 9/2 = 4.5 not 4 bug or allucination regards Olivier From olivier at ...289... Thu Nov 13 10:46:16 2003 From: olivier at ...289... (Olivier Coquet) Date: Thu, 13 Nov 2003 10:46:16 +0100 Subject: [Gambas-user] ARghhhhhhhhhhhh!!!! re big bug (I think) In-Reply-To: <200311131041.09938.olivier@...289...> References: <200311131041.09938.olivier@...289...> Message-ID: <200311131046.16900.olivier@...289...> Le Jeudi 13 Novembre 2003 10:41, Olivier Coquet a ?crit : > Helpppppppppppppp!!!!!!!!!! > > Gambas 0.71 on Fedora core 1 > > Dim t as integer > Dim s as integer > > t= 9 > s = 2 > > > print t/s =====> 4 ??????????? > > whats wrong, 9/2 = 4.5 not 4 > > bug or allucination Idem with Print 9/2 result = 4 but print 9.0/2 give 4.5 realy funny !!!!!!!!!! Regards Olivier From olinux at ...289... Thu Nov 13 11:03:56 2003 From: olinux at ...289... (Olivier Coquet) Date: Thu, 13 Nov 2003 11:03:56 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh Message-ID: <200311131103.56471.olinux@...289...> try: print 9/2 result give 4 try Print 9.0/2 result print 4.5 realy so funy Regards Olivier From eng_ak at ...200... Thu Nov 13 12:18:32 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Thu, 13 Nov 2003 13:18:32 +0200 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh In-Reply-To: <200311131103.56471.olinux@...289...> References: <200311131103.56471.olinux@...289...> Message-ID: <3FB36888.6030702@...200...> Benoit asserted that this is the desired functionality in the docs, although I agree, that 9/2 SHOULD give 4.5. Olivier Coquet wrote: > try: > > print 9/2 > > result give 4 > > try > > Print 9.0/2 > > result print 4.5 > > realy so funy > > Regards > Olivier > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From nferraz at ...184... Thu Nov 13 13:04:10 2003 From: nferraz at ...184... (Nelson Ferraz) Date: Thu, 13 Nov 2003 10:04:10 -0200 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh In-Reply-To: <3FB36888.6030702@...200...> References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> Message-ID: <3FB3733A.1000907@...184...> Ahmad Kamal wrote: > Benoit asserted that this is the desired functionality in the docs, > although I agree, that 9/2 SHOULD give 4.5. In Python and Ruby, "print 9/2" gives 4. In Perl and JavaScript, it gives 4.5. It seems to be a design decision. -- []s Nelson ________________________________________________________________ Nelson Ferraz GNU BIS: http://www.gnubis.com.br PhPerl: http://www.phperl.com From sourceforge-raindog2 at ...94... Thu Nov 13 15:14:06 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Thu, 13 Nov 2003 09:14:06 -0500 Subject: [Gambas-user] ARghhhhhhhhhhhh!!!! In-Reply-To: <200311131041.09938.olivier@...289...> References: <200311131041.09938.olivier@...289...> Message-ID: <200311130914.06023.sourceforge-raindog2@...94...> On Thursday 13 November 2003 04:41, Olivier Coquet wrote: > Dim t as integer > Dim s as integer > print t/s =====> 4 ??????????? > whats wrong, 9/2 = 4.5 not 4 > bug or allucination In Gambas, if you perform a math operation on two integers, it uses integer math. You can do the equivalent of casting if you need to, like so: print cfloat(t)/s ought to be enough to flip it over to floating point.... Or just declare t or s as a float in the first place. Rob From gambasfr at ...11... Thu Nov 13 15:15:55 2003 From: gambasfr at ...11... (Fabien Bodard) Date: Thu, 13 Nov 2003 15:15:55 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> <3FB3733A.1000907@...184...> Message-ID: <001501c3a9f0$a811f460$02140950@...295...> hi Olivier, Ahmad, Nelson, an others in fact in gambas you must to have at less one float number in operation to have a float result. so i as interger s as integer i = 4 s = 2 print i/s => give 5 i as interger s as float i = 4 s = 2 print i/s => give 4.5 i as interger s as integer i = 4 s = 2 print i/CFloat(s) => give 4.5 Fabien Bodard In fact i think it's to give more velocity (speed) to the interpreter. ----- Original Message ----- From: "Nelson Ferraz" To: Sent: Thursday, November 13, 2003 1:04 PM Subject: Re: [Gambas-user] Integer BUg Re Argggggghhhhhhh > Ahmad Kamal wrote: > > > Benoit asserted that this is the desired functionality in the docs, > > although I agree, that 9/2 SHOULD give 4.5. > > In Python and Ruby, "print 9/2" gives 4. > In Perl and JavaScript, it gives 4.5. > > It seems to be a design decision. > > -- > []s > > Nelson > > ________________________________________________________________ > Nelson Ferraz > > GNU BIS: http://www.gnubis.com.br > PhPerl: http://www.phperl.com > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambasfr at ...11... Thu Nov 13 15:20:28 2003 From: gambasfr at ...11... (Fabien Bodard) Date: Thu, 13 Nov 2003 15:20:28 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> <3FB3733A.1000907@...184...> Message-ID: <002101c3a9f1$4abe3de0$02140950@...295...> re hi nevertheless Its the same in VB ! Fabien bodard From fuerst at ...296... Thu Nov 13 17:00:56 2003 From: fuerst at ...296... (fuerst at ...296...) Date: Thu, 13 Nov 2003 17:00:56 +0100 (MET) Subject: [Gambas-user] Cannot load component problem Message-ID: <6993.1068739256@...297...> Hi all I installed gambas 0.71, configure and make run fine, no error, but make install gives me: /opt/gambas/lib/lib.gb.qt.editor.la: /opt/gambas/lib/lib.gb.qt.editor.so.0: undefined symbol: setResolution__12QPaintDevicei make[2]: *** [install-exec-local] Error 1 make[2]: Leaving directory `/home/david/gambas-0.71' make[1]: *** [install-am] Error 2 make[1]: Leaving directory `/home/david/gambas-0.71' make: *** [install-recursive] Error 1 so if I run gambas, folowing error occurs ERROR: #27: Cannot load component '/opt/gambas/lib/lib.gb.qt.la': /opt/gambas/lib/lib.gb.qt.so.0: undefined symbol: event__7QObjectP6QEvent (boths libs ARE there) Do I miss some QT-Libs? Shouldn't configure say, hey you don't have something essential? I also tried with ./configure --disable-qt-component, same bug there. I run a debian sid (unstable debian), kernel 2.2.20 and have a lot of qt-libs installed (does it make sense to list them all here?) regards Fuerst -- NEU F?R ALLE - GMX MediaCenter - f?r Fotos, Musik, Dateien... Fotoalbum, File Sharing, MMS, Multimedia-Gru?, GMX FotoService Jetzt kostenlos anmelden unter http://www.gmx.net +++ GMX - die erste Adresse f?r Mail, Message, More! +++ From olinux at ...289... Thu Nov 13 19:17:24 2003 From: olinux at ...289... (Olivier Coquet) Date: Thu, 13 Nov 2003 19:17:24 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh In-Reply-To: <001501c3a9f0$a811f460$02140950@...295...> References: <200311131103.56471.olinux@...289...> <3FB3733A.1000907@...184...> <001501c3a9f0$a811f460$02140950@...295...> Message-ID: <200311131917.24013.olinux@...289...> Le Jeudi 13 Novembre 2003 15:15, Fabien Bodard a ?crit : > so > i as interger > s as integer > i = 4 > s = 2 > print i/s => give 5 > > i as interger > s as float > i = 4 > s = 2 > print i/s => give 4.5 > > i as interger > s as integer > i = 4 > s = 2 > print i/CFloat(s) => give 4.5 > > Fabien Bodard I think your answer is something like martian peoples can understant :=) 4/2 in float, non float, integer and other give alway on earth, 2..... lol :=) regards olivier From karl.reinl at ...9... Thu Nov 13 23:34:42 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 13 Nov 2003 23:34:42 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> <3FB3733A.1000907@...184...> <001501c3a9f0$a811f460$02140950@...295...> Message-ID: <3FB40702.3080605@...9...> Fabien Bodard schrieb: >hi Olivier, Ahmad, Nelson, an others >in fact in gambas you must to have at less one float number in operation to >have a float result. > >so >i as interger >s as integer >i = 4 >s = 2 >print i/s => give 5 > >i as interger >s as float >i = 4 >s = 2 >print i/s => give 4.5 > >i as interger >s as integer >i = 4 >s = 2 >print i/CFloat(s) => give 4.5 > >Fabien Bodard > > realy funny int and float 4/2 makes > 4 are youe shure Charlie From karl.reinl at ...9... Thu Nov 13 23:35:45 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 13 Nov 2003 23:35:45 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> <3FB3733A.1000907@...184...> <002101c3a9f1$4abe3de0$02140950@...295...> Message-ID: <3FB40741.5090903@...9...> Fabien Bodard schrieb: >re hi >nevertheless > >Its the same in VB ! > >Fabien bodard > > not your last mail From girardhenri at ...67... Fri Nov 14 00:27:16 2003 From: girardhenri at ...67... (Henri Girard) Date: Fri, 14 Nov 2003 00:27:16 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> <3FB3733A.1000907@...184...> <001501c3a9f0$a811f460$02140950@...295...> <3FB40702.3080605@...9...> Message-ID: I think there is a mistake... 4/2 can't be 5... ----- Original Message ----- From: "Charlie" To: Sent: Thursday, November 13, 2003 11:34 PM Subject: Re: [Gambas-user] Integer BUg Re Argggggghhhhhhh > Fabien Bodard schrieb: > > >hi Olivier, Ahmad, Nelson, an others > >in fact in gambas you must to have at less one float number in operation to > >have a float result. > > > >so > >i as interger > >s as integer > >i = 4 > >s = 2 > >print i/s => give 5 > > > >i as interger > >s as float > >i = 4 > >s = 2 > >print i/s => give 4.5 > > > >i as interger > >s as integer > >i = 4 > >s = 2 > >print i/CFloat(s) => give 4.5 > > > >Fabien Bodard > > > > > realy funny int and float 4/2 makes > 4 > > are youe shure > > Charlie > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambasfr at ...11... Fri Nov 14 09:15:58 2003 From: gambasfr at ...11... (Fabien Bodard) Date: Fri, 14 Nov 2003 09:15:58 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> <3FB3733A.1000907@...184...> <001501c3a9f0$a811f460$02140950@...295...> <3FB40702.3080605@...9...> Message-ID: <000c01c3aa8d$aa534380$e4ee0950@...295...> Snirf! You are really bad with me.... When i want help you... But too speed = too bad so i as interger s as integer i = 9 s = 2 print i/s => give 4 i as interger s as float i = 9 s = 2 print i/s => give 4.5 i as interger s as integer i = 9 s = 2 print i/CFloat(s) => give 4.5 And YES I'M a MARTIAN ;-) But SHHHHT it must stay a secret ! Fabien Bodard From gambasfr at ...11... Fri Nov 14 09:57:18 2003 From: gambasfr at ...11... (Fabien Bodard) Date: Fri, 14 Nov 2003 09:57:18 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB3733A.1000907@...184...> <001501c3a9f0$a811f460$02140950@...295...> <200311131917.24013.olinux@...289...> Message-ID: <000d01c3aa8d$ab4f08a0$e4ee0950@...295...> Salut Alors comme, ?a on se moque? C'est po bien ! ;-) Sinon t'a commenc? ton logiciel ? Fabien ----- Original Message ----- From: "Olivier Coquet" To: Sent: Thursday, November 13, 2003 7:17 PM Subject: Re: [Gambas-user] Integer BUg Re Argggggghhhhhhh Le Jeudi 13 Novembre 2003 15:15, Fabien Bodard a ?crit : > so > i as interger > s as integer > i = 4 > s = 2 > print i/s => give 5 > > i as interger > s as float > i = 4 > s = 2 > print i/s => give 4.5 > > i as interger > s as integer > i = 4 > s = 2 > print i/CFloat(s) => give 4.5 > > Fabien Bodard I think your answer is something like martian peoples can understant :=) 4/2 in float, non float, integer and other give alway on earth, 2..... lol :=) regards olivier ------------------------------------------------------- This SF.Net email sponsored by: ApacheCon 2003, 16-19 November in Las Vegas. Learn firsthand the latest developments in Apache, PHP, Perl, XML, Java, MySQL, WebDAV, and more! http://www.apachecon.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...67... Fri Nov 14 10:23:50 2003 From: girardhenri at ...67... (Henri Girard) Date: Fri, 14 Nov 2003 10:23:50 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh References: <200311131103.56471.olinux@...289...> <3FB36888.6030702@...200...> <3FB3733A.1000907@...184...> <001501c3a9f0$a811f460$02140950@...295...> <3FB40702.3080605@...9...> <000c01c3aa8d$aa534380$e4ee0950@...295...> Message-ID: l'erreur est humaine :) lol ----- Original Message ----- From: "Fabien Bodard" To: Sent: Friday, November 14, 2003 9:15 AM Subject: Re: [Gambas-user] Integer BUg Re Argggggghhhhhhh > Snirf! > You are really bad with me.... > > When i want help you... But too speed = too bad > > so > i as interger > s as integer > i = 9 > s = 2 > print i/s => give 4 > > i as interger > s as float > i = 9 > s = 2 > print i/s => give 4.5 > > i as interger > s as integer > i = 9 > s = 2 > print i/CFloat(s) => give 4.5 > > And YES I'M a MARTIAN ;-) But SHHHHT it must stay a secret ! > > Fabien Bodard > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From olinux at ...289... Fri Nov 14 10:29:18 2003 From: olinux at ...289... (Olivier Coquet) Date: Fri, 14 Nov 2003 10:29:18 +0100 Subject: [Gambas-user] Integer BUg Re Argggggghhhhhhh In-Reply-To: <000d01c3aa8d$ab4f08a0$e4ee0950@...295...> References: <200311131103.56471.olinux@...289...> <200311131917.24013.olinux@...289...> <000d01c3aa8d$ab4f08a0$e4ee0950@...295...> Message-ID: <200311141029.18210.olinux@...289...> Le Vendredi 14 Novembre 2003 09:57, Fabien Bodard a ?crit : > Salut > > Alors comme, ?a on se moque? > > C'est po bien ! > ;-) > > Sinon t'a commenc? ton logiciel ? > > Fabien [Frenchy start] vi, j'chuis a fond dedans :=) [Frenchy stop] regards Olivier From olinux at ...289... Fri Nov 14 13:42:46 2003 From: olinux at ...289... (Olivier Coquet) Date: Fri, 14 Nov 2003 13:42:46 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 Message-ID: <200311141342.46423.olinux@...289...> Here is a try to create a little internet site for stratoria, corporate software writed with gambas tel me if all is ok only tow link for instance (home page and actualite) sorry for quality but linux is realy bad for creating real designed web site :=((((( regards Olivier From olinux at ...289... Fri Nov 14 13:43:46 2003 From: olinux at ...289... (Olivier Coquet) Date: Fri, 14 Nov 2003 13:43:46 +0100 Subject: [Gambas-user] oops sorry i forget the adress Message-ID: <200311141343.46895.olinux@...289...> here it is: http://stratoria.dynu.net:85/ regards olivier From Gambasfr at ...11... Fri Nov 14 20:28:18 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Fri, 14 Nov 2003 19:28:18 +0000 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <200311141342.46423.olinux@...289...> References: <200311141342.46423.olinux@...289...> Message-ID: <200311141928.18860.Gambasfr@...11...> Le Vendredi 14 Novembre 2003 12:42, Olivier Coquet a ?crit : > Here is a try to create a little internet site for stratoria, corporate > software writed with gambas > > tel me if all is ok > > only tow link for instance (home page and actualite) > > sorry for quality but linux is realy bad for creating real designed web ??? Why ? Do you know gimp ? > site > > :=((((( > > regards > Olivier > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From olinux at ...289... Fri Nov 14 19:30:21 2003 From: olinux at ...289... (Olivier Coquet) Date: Fri, 14 Nov 2003 19:30:21 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <200311141928.18860.Gambasfr@...11...> References: <200311141342.46423.olinux@...289...> <200311141928.18860.Gambasfr@...11...> Message-ID: <200311141930.21703.olinux@...289...> Le Vendredi 14 Novembre 2003 20:28, Fabien Bodard a ?crit : > ??? > Why ? > Do you know gimp ? Gimp, it's not an html editor????? question, i'm blocking on a stupid problem I want ton create a clas where i can store some sub to call them from my main form when i click on a button but i can't can you explain me please???? regards Olivier From gambas at ...1... Fri Nov 14 21:48:30 2003 From: gambas at ...1... (Benoit Minisini) Date: Fri, 14 Nov 2003 21:48:30 +0100 Subject: [Gambas-user] Cannot load component problem In-Reply-To: <6993.1068739256@...297...> References: <6993.1068739256@...297...> Message-ID: <200311142148.30607.gambas@...1...> Le Jeudi 13 Novembre 2003 17:00, fuerst at ...296... a ?crit : > Hi all > > I installed gambas 0.71, configure and make run fine, no error, but make > install gives me: > /opt/gambas/lib/lib.gb.qt.editor.la: /opt/gambas/lib/lib.gb.qt.editor.so.0: > undefined symbol: setResolution__12QPaintDevicei > make[2]: *** [install-exec-local] Error 1 > make[2]: Leaving directory `/home/david/gambas-0.71' > make[1]: *** [install-am] Error 2 > make[1]: Leaving directory `/home/david/gambas-0.71' > make: *** [install-recursive] Error 1 > > so if I run gambas, folowing error occurs > ERROR: #27: Cannot load component '/opt/gambas/lib/lib.gb.qt.la': > /opt/gambas/lib/lib.gb.qt.so.0: undefined symbol: event__7QObjectP6QEvent > (boths libs ARE there) > > Do I miss some QT-Libs? Shouldn't configure say, hey you don't have > something essential? I also tried with ./configure --disable-qt-component, > same bug there. > > I run a debian sid (unstable debian), kernel 2.2.20 and have a lot of > qt-libs installed (does it make sense to list them all here?) > > regards > Fuerst Which version of QT do you use ? Have you installed only one version of QT on your system or several ? Regards, -- Benoit Minisini mailto:gambas at ...1... From Gambasfr at ...11... Sat Nov 15 00:33:49 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Fri, 14 Nov 2003 23:33:49 +0000 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <200311141930.21703.olinux@...289...> References: <200311141342.46423.olinux@...289...> <200311141928.18860.Gambasfr@...11...> <200311141930.21703.olinux@...289...> Message-ID: <200311142333.49266.Gambasfr@...11...> Le Vendredi 14 Novembre 2003 18:30, Olivier Coquet a ?crit : > Le Vendredi 14 Novembre 2003 20:28, Fabien Bodard a ?crit : > > ??? > > Why ? > > Do you know gimp ? > > Gimp, it's not an html editor????? > > question, i'm blocking on a stupid problem > > I want ton create a clas where i can store some sub to call them from my > main form when i click on a button but i can't can you explain me > please???? > > regards > Olivier > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user Re : In Your Class 'MyClass' : Public Test as String ===========> hi benoit i think there is a bug here it don't work if i don't declare a public variable in the top of my custom class! Public Sub MySub(Text as String) end In your Main Class Dim hMyClass as MyClass Public Sub Main() hMyClass = New MyClass end Public Sub Button1_Click() hMyClass.MySub("Test") End From gambas at ...1... Fri Nov 14 23:57:39 2003 From: gambas at ...1... (Benoit Minisini) Date: Fri, 14 Nov 2003 23:57:39 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <200311142333.49266.Gambasfr@...11...> References: <200311141342.46423.olinux@...289...> <200311141930.21703.olinux@...289...> <200311142333.49266.Gambasfr@...11...> Message-ID: <200311142357.39460.gambas@...1...> Le Samedi 15 Novembre 2003 00:33, Fabien Bodard a ?crit : > Le Vendredi 14 Novembre 2003 18:30, Olivier Coquet a ?crit : > > Le Vendredi 14 Novembre 2003 20:28, Fabien Bodard a ?crit : > > > ??? > > > Why ? > > > Do you know gimp ? > > > > Gimp, it's not an html editor????? > > > > question, i'm blocking on a stupid problem > > > > I want ton create a clas where i can store some sub to call them from my > > main form when i click on a button but i can't can you explain me > > please???? > > > > regards > > Olivier > > > > Re : > > In Your Class 'MyClass' : > > Public Test as String > > ===========> hi benoit i think there is a bug here it don't work if > i don't declare a public variable in the top of my custom class! > > It is not necessary to send me a mail posted on the mailing-list, as I AM on the mailing-list too ! A class without any dynamic variable can not be instanciated. Is it your problem ? Because "it don't works" means something for you, but is not really useful for me: is it an interpreter crash ? Is it an interpreter error message ? Nothing happens ? You didn't run the program ? You are using Visual Basic under Windows ? You are not facing your computer but your TV ? I am not on the right project mailing-list... Aaaaargh ! It is midnight, and all this theatre is attacking my mind.... :-) -- Benoit Minisini mailto:gambas at ...1... From Gambasfr at ...11... Sat Nov 15 02:06:10 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Sat, 15 Nov 2003 01:06:10 +0000 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <200311142357.39460.gambas@...1...> References: <200311141342.46423.olinux@...289...> <200311142333.49266.Gambasfr@...11...> <200311142357.39460.gambas@...1...> Message-ID: <200311150106.11019.Gambasfr@...11...> Le Vendredi 14 Novembre 2003 22:57, Benoit Minisini a ?crit : > Le Samedi 15 Novembre 2003 00:33, Fabien Bodard a ?crit : > > Le Vendredi 14 Novembre 2003 18:30, Olivier Coquet a ?crit : > > > Le Vendredi 14 Novembre 2003 20:28, Fabien Bodard a ?crit : > > > > ??? > > > > Why ? > > > > Do you know gimp ? > > > > > > Gimp, it's not an html editor????? > > > > > > question, i'm blocking on a stupid problem > > > > > > I want ton create a clas where i can store some sub to call them from > > > my main form when i click on a button but i can't can you explain me > > > please???? > > > > > > regards > > > Olivier > > > > Re : > > > > In Your Class 'MyClass' : > > > > Public Test as String > > > > ===========> hi benoit i think there is a bug here it don't work > > if i don't declare a public variable in the top of my custom class! > > It is not necessary to send me a mail posted on the mailing-list, as I AM > on the mailing-list too ! > > A class without any dynamic variable can not be instanciated. Is it your > problem ? Because "it don't works" means something for you, but is not > really useful for me: is it an interpreter crash ? Is it an interpreter > error message ? Nothing happens ? You didn't run the program ? You are > using Visual Basic under Windows ? You are not facing your computer but > your TV ? I am not on the right project mailing-list... Aaaaargh ! It is > midnight, and all this theatre is attacking my mind.... :-) Hem... I'm so tired ... scuse me for my english And thank .. i remember now... > A class without any dynamic variable can not be instanciated. Fabien From olinux at ...289... Sat Nov 15 08:01:20 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 15 Nov 2003 08:01:20 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <200311150106.11019.Gambasfr@...11...> References: <200311141342.46423.olinux@...289...> <200311142357.39460.gambas@...1...> <200311150106.11019.Gambasfr@...11...> Message-ID: <200311150801.20533.olinux@...289...> Site of Stratoria is growing I've writed some explanations and project comments, license is GPL and i've copyed the entire content of license page from benoit site (thanks benoit, good work must not be remaked :) the project actualy grow with reasonable speed, thank to benoit for the excellent work Gambas is realy nice featured software en developing with it is a pleasure ! Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From olinux at ...289... Sat Nov 15 08:52:58 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 15 Nov 2003 08:52:58 +0100 Subject: [Gambas-user] form control need help pleas... Message-ID: <200311150852.58935.olinux@...289...> i have a class named F1 which is my main form containing a button1 control named B1 and a TextBox control named TB1 I have a class named C which contain some sub to act on F1 controls I instanciate C in F1 constructor correcly I Call a sub routine in C when I click on B1 I get the handler of F1 in C constructor sub in C is: PUBLIC fen AS F1 PUBLIC SUB _new(hwnd AS F1) fen = hwnd END public sub test() fen.Text = "toto" '<=========this work perfectly fen.TB1.Text = "toto" '<======this say me than no TB symbol exist in class F1 end some body to help me???????? regards olivier Strat&Co http://stratoria.dynu.net:85/ From danielcampos at ...277... Sat Nov 15 11:07:53 2003 From: danielcampos at ...277... (daniel) Date: Sat, 15 Nov 2003 10:07:53 +0000 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <200311150801.20533.olinux@...289...> References: <200311141342.46423.olinux@...289...> <200311142357.39460.gambas@...1...> <200311150106.11019.Gambasfr@...11...> <200311150801.20533.olinux@...289...> Message-ID: <1068890872.2240.22.camel@...278...> Hi Olivier: Just one thing about Stratoria home page... Could you change color schema? That orange and yellow over black or even over White it's terribly to read for me, I have to force my eyes a lot... For the program: good work! Regards, Daniel Campos El s?b, 15-11-2003 a las 07:01, Olivier Coquet escribi?: > Site of Stratoria is growing > > I've writed some explanations and project comments, license is GPL and i've > copyed the entire content of license page from benoit site (thanks benoit, > good work must not be remaked :) > > the project actualy grow with reasonable speed, thank to benoit for the > excellent work Gambas is realy nice featured software en developing with it > is a pleasure ! > > Regards > Olivier Coquet > Strat&Co > http://stratoria.dynu.net:85/ > > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...67... Sat Nov 15 10:47:31 2003 From: girardhenri at ...67... (Henri Girard) Date: Sat, 15 Nov 2003 10:47:31 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 References: <200311141342.46423.olinux@...289...> <200311142357.39460.gambas@...1...> <200311150106.11019.Gambasfr@...11...> <200311150801.20533.olinux@...289...> Message-ID: I looked your project... stratoria.. wow... I think i will try to spend some time to practice gambas with it ! Thanks all for your good jobs :) Henri ----- Original Message ----- From: "Olivier Coquet" To: Sent: Saturday, November 15, 2003 8:01 AM Subject: Re: [Gambas-user] First Step Stratoria 0.0.1 > Site of Stratoria is growing > > I've writed some explanations and project comments, license is GPL and i've > copyed the entire content of license page from benoit site (thanks benoit, > good work must not be remaked :) > > the project actualy grow with reasonable speed, thank to benoit for the > excellent work Gambas is realy nice featured software en developing with it > is a pleasure ! > > Regards > Olivier Coquet > Strat&Co > http://stratoria.dynu.net:85/ > > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From olinux at ...289... Sat Nov 15 10:55:54 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 15 Nov 2003 10:55:54 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <1068890872.2240.22.camel@...278...> References: <200311141342.46423.olinux@...289...> <200311150801.20533.olinux@...289...> <1068890872.2240.22.camel@...278...> Message-ID: <200311151055.54598.olinux@...289...> Le Samedi 15 Novembre 2003 11:07, daniel a ?crit : > Hi Olivier: > > Just one thing about Stratoria home page... Could you > change color schema? That orange and yellow over black > or even over White it's terribly to read for me, I have to > force my eyes a lot... > > For the program: good work! > > Regards, > > Daniel Campos just a little problem with this stupid netscape composer which say that background is not relative url........GRRRRRRRRRRRRRR!!!!!!!! i correct this rapidly Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From olinux at ...289... Sat Nov 15 11:13:05 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 15 Nov 2003 11:13:05 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: <1068890872.2240.22.camel@...278...> References: <200311141342.46423.olinux@...289...> <200311150801.20533.olinux@...289...> <1068890872.2240.22.camel@...278...> Message-ID: <200311151113.05074.olinux@...289...> Le Samedi 15 Novembre 2003 11:07, daniel a ?crit : > Hi Olivier: > > Just one thing about Stratoria home page... Could you > change color schema? That orange and yellow over black > or even over White it's terribly to read for me, I have to > force my eyes a lot... > > For the program: good work! > > Regards, > > Daniel Campos here all is ok a nice jeans background I hope :=) Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From gambas at ...1... Sat Nov 15 11:21:40 2003 From: gambas at ...1... (Benoit Minisini) Date: Sat, 15 Nov 2003 11:21:40 +0100 Subject: [Gambas-user] form control need help pleas... In-Reply-To: <200311150852.58935.olinux@...289...> References: <200311150852.58935.olinux@...289...> Message-ID: <200311151121.40689.gambas@...1...> Le Samedi 15 Novembre 2003 08:52, Olivier Coquet a ?crit : > i have a class named F1 which is my main form containing a button1 control > named B1 and a TextBox control named TB1 > > I have a class named C which contain some sub to act on F1 controls > > I instanciate C in F1 constructor correcly > > I Call a sub routine in C when I click on B1 > > I get the handler of F1 in C constructor > > sub in C is: > > PUBLIC fen AS F1 > > PUBLIC SUB _new(hwnd AS F1) > > fen = hwnd > > END > > public sub test() > > fen.Text = "toto" '<=========this work perfectly > > fen.TB1.Text = "toto" '<======this say me than no TB symbol exist in class > F1 > > end > > some body to help me???????? > > regards > olivier > Strat&Co > http://stratoria.dynu.net:85/ > > This is by design. Contrary to VB, form controls are not public, because the less public variables you have in a class, the better is your program. You should really read carefully all the gambas documentation, especially the "Differences from VB" page if you plan to make a big program. If yo don't want to hurt your VB-infected mind :-), there is a project option name "all form controls are public". If you check it, your program will behave like you wanted. But I suggest you keeping controls private, and improve your program design. For example, if your class C has a method that modifies the form F1, you should better put this method directly in F1. This is a general object-oriented programming practice. Don't think that F1 is only a form. It is a class too. It is a class that can display a form too. You don't need to separate the class part of F1 and keep in it only the GUI related methods. Am I clear ? Many gambas designs try to prevent the horrible design I am compelled to do when I program in VB. I don't know if it will be a success, but please help me by trying to forgot how you programmed in VB ! Regards, -- Benoit Minisini mailto:gambas at ...1... ----[ FRENCH VERSION / VERSION FRAN?AISE ]---- Tout est normal. Gambas a ?t? con?u ainsi. Contrairement ? VB, les controles des formulaires ne sont pas publics, car moins il y a de variables publiques dans une classe, et mieux c'est. Tu devrais lire s?rieusement la documentation de Gambas, et surtout ce qui concerne les diff?rences entre VB et Gambas, si tu comptes faire un gros programme. Si tu ne veux pas chambouler ton esprit infect? par VB :-), il y a une option de projet qui permet de rendre les contr?les des formulaires publics. Si tu la coches, ton programme se comportera comme tu le veux. Mais je te sugg?re de garder tes contr?les priv?s, et d'am?liorer la conception de ton programme. Par exemple, si ta classe C a une m?thode qui modifie le formulaire F1, il vaut mieux mettre cette m?thode directement dans F1. C'est un principe de base en programmation orient?-objet. Ne vois pas seulement F1 comme un formulaire. C'est aussi une classe. C'est une classe qui peut aussi afficher un formulaire. Il n'est pas n?cessaire de s?pararer de F1 les m?thodes de classe pour n'y conserver que les m?thodes relatives ? l'interface utilisateur. Est-ce que je suis clair ? Beaucoup d'?l?ments de conception de Gambas tentent d'emp?cher les horribles choses que l'on est oblig? de faire lorsqu'on programme en VB. Je ne sais pas si ?a marchera, mais, s'il-vous-plait, aidez-moi en essayant d'oublier comment vous programmiez en VB ! Amicalement, -- Benoit Minisini mailto:gambas at ...1... From olinux at ...289... Sat Nov 15 17:46:32 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 15 Nov 2003 17:46:32 +0100 Subject: [Gambas-user] form control need help pleas... In-Reply-To: <200311151121.40689.gambas@...1...> References: <200311150852.58935.olinux@...289...> <200311151121.40689.gambas@...1...> Message-ID: <200311151746.32196.olinux@...289...> > This is by design. Contrary to VB, form controls are not public, because > the less public variables you have in a class, the better is your program. > > You should really read carefully all the gambas documentation, especially > the "Differences from VB" page if you plan to make a big program. > > If yo don't want to hurt your VB-infected mind :-), there is a project > option name "all form controls are public". If you check it, your program > will behave like you wanted. I'm consterned by my stupidity....... This afternoon, I go to buy some tobaco (erggggg english is not so easy for me ! ) and in remember this 'little' detail.....sorry to vast your time. > But I suggest you keeping controls private, and improve your program > design. > > For example, if your class C has a method that modifies the form F1, you > should better put this method directly in F1. This is a general > object-oriented programming practice. Don't think that F1 is only a form. > It is a class too. It is a class that can display a form too. You don't > need to separate the class part of F1 and keep in it only the GUI related > methods. Am I clear ? Hummm yes but in middle of my 1487 lines of code i begin to loose me..... > > Many gambas designs try to prevent the horrible design I am compelled to do > when I program in VB. I don't know if it will be a success, but please help > me by trying to forgot how you programmed in VB ! what is vb??????? :=) > Regards, > > -- > Benoit Minisini > mailto:gambas at ...1... > > ----[ FRENCH VERSION / VERSION FRAN?AISE ]---- > > Tout est normal. Gambas a ?t? con?u ainsi. Contrairement ? VB, les > controles des formulaires ne sont pas publics, car moins il y a de > variables publiques dans une classe, et mieux c'est. > > Tu devrais lire s?rieusement la documentation de Gambas, et surtout ce qui > concerne les diff?rences entre VB et Gambas, si tu comptes faire un gros > programme. > > Si tu ne veux pas chambouler ton esprit infect? par VB :-), il y a une > option de projet qui permet de rendre les contr?les des formulaires > publics. Si tu la coches, ton programme se comportera comme tu le veux. CF: voir au dessus, c'est malin si j'avais su que c'etait en fran?ais plus bas, me serait pas fait ch........ (<=== only pure French can understand this, don't try other) > Mais je te sugg?re de garder tes contr?les priv?s, et d'am?liorer la > conception de ton programme. Et allez donc..... comme tu y vas > Par exemple, si ta classe C a une m?thode qui modifie le formulaire F1, il > vaut mieux mettre cette m?thode directement dans F1. C'est un principe de > base en programmation orient?-objet. Ne vois pas seulement F1 comme un > formulaire. C'est aussi une classe. C'est une classe qui peut aussi > afficher un formulaire. Il n'est pas n?cessaire de s?pararer de F1 les > m?thodes de classe pour n'y conserver que les m?thodes relatives ? > l'interface utilisateur. Est-ce que je suis clair ? heuuu ben voui m'sieur mais au dela de 1400 lignes de code, ca devient pas d'une clart? limpide pour on esprit fraichement linuxis?.... > Beaucoup d'?l?ments de conception de Gambas tentent d'emp?cher les > horribles choses que l'on est oblig? de faire lorsqu'on programme en VB. Je > ne sais pas si ?a marchera, mais, s'il-vous-plait, aidez-moi en essayant > d'oublier comment vous programmiez en VB ! > > Amicalement, idem va jetter un oeil sur le site stratoria, ca devrait te convaincre qu'on peut faire des trucs sympas avec gambas meme quand on sort de VB :=)))))) amiti? Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From olinux at ...289... Sat Nov 15 10:54:49 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 15 Nov 2003 10:54:49 +0100 Subject: [Gambas-user] First Step Stratoria 0.0.1 In-Reply-To: References: <200311141342.46423.olinux@...289...> <200311150801.20533.olinux@...289...> Message-ID: <200311151054.49860.olinux@...289...> Le Samedi 15 Novembre 2003 10:47, Henri Girard a ?crit : > I looked your project... stratoria.. wow... I think i will try to spend > some time to practice gambas with it ! > Thanks all for your good jobs :) > Henri thanks to you Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From nferraz at ...184... Sat Nov 15 23:44:42 2003 From: nferraz at ...184... (Nelson Ferraz) Date: Sat, 15 Nov 2003 20:44:42 -0200 Subject: [Gambas-user] To push desktop Linux, radical shift may be required (article) Message-ID: <3FB6AC5A.7060608@...184...> Interesting article at OnLamp.com, questions why Linux haven't made big inroads among ordinary computer users: "The first theory is that Linux's advantages will eventually overcome corporate and government conservatism. (...) A second possibility is that Linux may not catch on at all for Mr. and Ms. Average Schmo, at least not for the foreseeable future. (...) But we should also consider a third theory. Nat Friedman of Ximian (now Novell) explained at the Desktop Linux conference that the highest barrier to Linux adoption is the cost of rewriting applications. This was the conclusion of a consulting firm brought in by the city of Munich to determine whether it should replace Windows with Linux. The consulting firm warned that application migration costs would override the savings in licensing fees, and Microsoft came in with a stunningly low counter-offer. Munich decided to move to Linux anyway, for strategic reasons. But it's a hard decision to make. Friedman and the Munich consulting firm were not the only ones to point this out. Back in September, the well-known consulting firm Gartner reportedly told companies that it would cost them money to move to Linux--precisely because they'd have to rewrite their applications. For desktop users, "migration costs will be very high because all Windows applications must be replaced or rewritten." http://www.onlamp.com/pub/wlg/3971 That's why Gambas will be so important for Free/Open Source Software: it will make it easier to port VB applications to GNU/Linux. -- []s Nelson ________________________________________________________________ Nelson Ferraz GNU BIS: http://www.gnubis.com.br PhPerl: http://www.phperl.com From mardus at ...298... Sun Nov 16 14:35:19 2003 From: mardus at ...298... (Marcelo Duschkin) Date: Sun, 16 Nov 2003 10:35:19 -0300 Subject: [Gambas-user] buttons Message-ID: <200311161035.19742.mardus@...298...> Hi I need to put an icon centered on a button and a text bellow the icon. Is it possible? How? I'm using 0.65 on Mandrake 9.1 (Sorry for my poor english) -- Marcelo Duschkin - Buenos Aires - Argentina mardus at ...298... www.websdelsur.com.ar www.lahueya.com.ar El Ping?inor?culo ha sentenciado: ?Windows poco ?til? ?Y con que te crees que juega ahora el perro? From odisseo at ...299... Sun Nov 16 20:22:05 2003 From: odisseo at ...299... (odisseo at ...299...) Date: Sun, 16 Nov 2003 14:22:05 -0500 (EST) Subject: [Gambas-user] QUIT error Message-ID: <200311161922.OAA02870@...300...> With Gambas 0.71 (latest) i've obtained an error with QUIT instruction for an exit button. Any suggestion about this ? How write a correct exit subprocedure? Giuseppe From leo.barnhoorn at ...246... Mon Nov 17 07:51:58 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sun, 16 Nov 2003 22:51:58 -0800 Subject: [Gambas-user] Old problem. Message-ID: <200311162251.59000.leo.barnhoorn@...246...> Hallo Daniel, This text comes from a old messages you wrote on 03-09-2003. > (*) be careful if you are not "root" when using G2, as you will > be not able to used reserved ports 1-1024, and after using Stop() > you there will be some time in wich you can not use the same port > for listen again... Linux things This problem will araise when we use Server.Close, also whitin my program this problem will araise but when the Client Disconnect and the EVENT Client.Closed raised then i can stop and start the server and there is no problem. > there will be some time in wich you can not use the same port > for listen again... Linux things Is it possible to make something like Client.Closed but then for Server.Close, or is that not possible. Thanks for your work. Regards, Leo Barnhoorn. From leo.barnhoorn at ...246... Mon Nov 17 08:05:52 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sun, 16 Nov 2003 23:05:52 -0800 Subject: [Gambas-user] Old problem. In-Reply-To: <200311162251.59000.leo.barnhoorn@...246...> References: <200311162251.59000.leo.barnhoorn@...246...> Message-ID: <200311162305.52400.leo.barnhoorn@...246...> Hallo Daniel, Sorry i forgot something. On Sunday 16 November 2003 22:51, Leo Barnhoorn wrote: > > Is it possible to make something like Client.Closed but then for > Server.Close, or is that not possible. > I mean in the cleanup process. Thanks for your work. Regards, Leo Barnhoorn. > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From wyg_kd at ...43... Mon Nov 17 09:49:24 2003 From: wyg_kd at ...43... (Wayan Sriyasa) Date: Mon, 17 Nov 2003 00:49:24 -0800 (PST) Subject: [Gambas-user] I'm a new GAMBAS fans... Message-ID: <20031117084924.56050.qmail@...301...> bogor, Nov 17, 2003 Om Swastiastu,... i've receive gambas maiiling list address. I'm really greatful becaome to be the part of GAMBAS user in LINUX world. I wonder that all of you help me to be a GAMBAS programmer. Thank's Name : Wayan Sriyasa birth : October 15, 1980 in Klungkung Bali religion : Hindu Address : JL. BARA III/18, Darmaga, Bogor, West Java, Indonesia. Zip :16680. Om Santi, Santi, Santi, Om --------------------------------- Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard -------------- next part -------------- An HTML attachment was scrubbed... URL: From leo.barnhoorn at ...246... Mon Nov 17 23:11:05 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Mon, 17 Nov 2003 14:11:05 -0800 Subject: [Gambas-user] "Native" arrays Message-ID: <200311171411.05447.leo.barnhoorn@...246...> Hallo Benoit, "Native" arrays You declare them this way: DIM MyArray[Dim1, Dim2, ... ] AS Integer/String/... You can have up to eight dimensions. I make something like this in my program but it is not working. DIM aConsole[24, 79, 3] AS Integer/Integer/Integer I get a syntax error. Also when i use vars it is not working, the same error. How can i use this kind of array. Regards, Leo Barnhoorn. From olinux at ...289... Mon Nov 17 18:53:03 2003 From: olinux at ...289... (Olivier Coquet) Date: Mon, 17 Nov 2003 18:53:03 +0100 Subject: [Gambas-user] little disapointment with DB Message-ID: <200311171853.03161.olinux@...289...> how can i know if a database exist or not??? To know if connection between my progy and mysql, i can catch an error but if my connexion is ok i can't know if a specific database exist or not i've seen a .ConnectionDatabase.Exist but i d'ont understand how i can use it...... Regards olivier From danielcampos at ...277... Mon Nov 17 20:19:27 2003 From: danielcampos at ...277... (daniel) Date: Mon, 17 Nov 2003 19:19:27 +0000 Subject: [Gambas-user] Old problem. In-Reply-To: <200311162251.59000.leo.barnhoorn@...246...> References: <200311162251.59000.leo.barnhoorn@...246...> Message-ID: <1069096766.2240.6.camel@...278...> El lun, 17-11-2003 a las 06:51, Leo Barnhoorn escribi?: > Hallo Daniel, > > This text comes from a old messages you wrote on 03-09-2003. > > > (*) be careful if you are not "root" when using G2, as you will > > be not able to used reserved ports 1-1024, and after using Stop() > > you there will be some time in wich you can not use the same port > > for listen again... Linux things > > This problem will araise when we use Server.Close, also whitin my program this > problem will araise but when the Client Disconnect and the EVENT > Client.Closed raised then i can stop and start the server and there is no > problem. > > there will be some time in wich you can not use the same port > > for listen again... Linux things > This is as it is by design of Linux kernel: when you close a server and some clients are still connected, kernel keeps alive the connection for a time to let possible remote clients finish its work correctly. In that time, you can not bind again the socket to the same port, with the exception of root user. > Is it possible to make something like Client.Closed but then for Server.Close, > or is that not possible. > I don't know any way to ask the kernel to "forget" that connection :(, however, if anybody knows how to do it, I would be very pleased correcting that "bug"(?) Regards, Daniel Campos > Thanks for your work. > > Regards, > Leo Barnhoorn. > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From karl.reinl at ...9... Mon Nov 17 22:07:02 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 17 Nov 2003 22:07:02 +0100 Subject: [Gambas-user] gambas-0.71 IDE Message-ID: <3FB93876.6000908@...9...> Salut, found the attached bug in the IDE Amicalement Charlie -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: gambas-0.71 URL: From olinux at ...289... Tue Nov 18 09:02:04 2003 From: olinux at ...289... (Olivier Coquet) Date: Tue, 18 Nov 2003 09:02:04 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing Message-ID: <200311180902.04157.olinux@...289...> [English Start] Here is the test version of stratoria, a complet soft writed in gambas 0.71 language. You can download it in exec or source version from this adress: http://stratoria.dynu.net:85/ rubrique t?l?chargement ATTENTION, this version is probably buggy, use with prudence. Regards Olivier [French Start] Voila, la version de test (premiere version utilisable) de Stratoria, logiciel de gestion commerciale sous gambas 0.71 est dispo en t?l?chargement ? http://stratoria.dynu.net:85/ rubrique t?l?chargement attention, ce n'est pas encore debuggu?, et seule la gestion des op?rations est finalis?e. vous pouvez soit t?l?charger l'ex?cutable, soit t?l?charger le source en tar.gz. ca pourra donner des id?es ? ceux qui souhaitent exploiter une ou des bases SQL. amiti? Olivier From danielcampos at ...282... Tue Nov 18 09:22:20 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Tue, 18 Nov 2003 09:22:20 CET Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing Message-ID: >[English Start] >Here is the test version of stratoria, a complet soft writed in gambas >0.71 >language. > >You can download it in exec or source version from this adress: Hi Olivier: At main screen, when program asks for a user name and password, the password TextBox is not protected so anybody cas see de password you are writing. You should put the property "Password" of that TextBox to "True", to allow text apperar shadowed. Regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From olivier at ...289... Tue Nov 18 10:22:38 2003 From: olivier at ...289... (Olivier Coquet) Date: Tue, 18 Nov 2003 10:22:38 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing In-Reply-To: References: Message-ID: <200311181022.38861.olivier@...289...> Le Mardi 18 Novembre 2003 13:22, danielcampos at ...282... a ?crit : > >[English Start] > >Here is the test version of stratoria, a complet soft writed in gambas > >0.71 > >language. > > > >You can download it in exec or source version from this adress: > > Hi Olivier: > > At main screen, when program asks for a user name and password, > the password TextBox is not protected so anybody cas see de > password you are writing. You should put the property "Password" > of that TextBox to "True", to allow text apperar shadowed. > > Regards, > > Daniel Campos ok this will be corrected in the next version! thanks Olivier From gambas at ...1... Tue Nov 18 17:25:36 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:25:36 +0100 Subject: [Gambas-user] buttons In-Reply-To: <200311161035.19742.mardus@...298...> References: <200311161035.19742.mardus@...298...> Message-ID: <200311181725.36828.gambas@...1...> Le Dimanche 16 Novembre 2003 14:35, Marcelo Duschkin a ?crit : > Hi > I need to put an icon centered on a button and a text bellow the icon. > Is it possible? How? > I'm using 0.65 on Mandrake 9.1 > > (Sorry for my poor english) Hi, It is not possible at the moment. You can only put the icon on the left and the text on the right. Sorry for this inconvenience, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 18 17:26:28 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:26:28 +0100 Subject: [Gambas-user] QUIT error In-Reply-To: <200311161922.OAA02870@...300...> References: <200311161922.OAA02870@...300...> Message-ID: <200311181726.28331.gambas@...1...> Le Dimanche 16 Novembre 2003 20:22, odisseo at ...299... a ?crit : > With Gambas 0.71 (latest) > i've obtained an error with QUIT instruction for an exit button. > Any suggestion about this ? > How write a correct exit subprocedure? > > Giuseppe > This is a bug that will be fix in the next version. If you want to quit cleanly, close all opened windows. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 18 17:29:43 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:29:43 +0100 Subject: [Gambas-user] Old problem. In-Reply-To: <1069096766.2240.6.camel@...278...> References: <200311162251.59000.leo.barnhoorn@...246...> <1069096766.2240.6.camel@...278...> Message-ID: <200311181729.43371.gambas@...1...> Le Lundi 17 Novembre 2003 20:19, daniel a ?crit : > > I don't know any way to ask the kernel to "forget" that connection :(, > however, if anybody knows how to do it, I would be very pleased > correcting that "bug"(?) > > > Regards, > > Daniel Campos > Do the following before binding the socket: int auth = 1; setsockopt(sock_fd, SOL_SOCKET, SO_REUSEADDR, &auth, sizeof(int)); I don't know if it works, I read this in a book, and I don't know if it works on other systems than Linux. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 18 17:32:14 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:32:14 +0100 Subject: [Gambas-user] I'm a new GAMBAS fans... In-Reply-To: <20031117084924.56050.qmail@...301...> References: <20031117084924.56050.qmail@...301...> Message-ID: <200311181732.14546.gambas@...1...> Le Lundi 17 Novembre 2003 09:49, Wayan Sriyasa a ?crit : > bogor, Nov 17, 2003 > > Om Swastiastu,... > > i've receive gambas maiiling list address. I'm really greatful becaome to > be the part of GAMBAS user in LINUX world. I wonder that all of you help > me to be a GAMBAS programmer. > > Thank's > > Name : Wayan Sriyasa > birth : October 15, 1980 in Klungkung Bali > religion : Hindu > Address : JL. BARA III/18, Darmaga, Bogor, West Java, Indonesia. Zip > :16680. > > Om Santi, Santi, Santi, Om > Welcome to the Gambas world ! -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 18 17:37:51 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:37:51 +0100 Subject: [Gambas-user] little disapointment with DB In-Reply-To: <200311171853.03161.olinux@...289...> References: <200311171853.03161.olinux@...289...> Message-ID: <200311181737.51260.gambas@...1...> Le Lundi 17 Novembre 2003 18:53, Olivier Coquet a ?crit : > how can i know if a database exist or not??? > > To know if connection between my progy and mysql, i can catch an error but > if my connexion is ok i can't know if a specific database exist or not > > i've seen a .ConnectionDatabase.Exist but i d'ont understand how i can use > it...... > > > Regards > olivier > > You must connect to the database, with a null database name, and then use MyConnection.Database.Exist(DatabaseName) to know if a database exist in the server. Look in the code of the gambas database manager ! :-) I help you: take the function CServer.RefreshDatabase. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 18 17:41:19 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:41:19 +0100 Subject: [Gambas-user] gambas-0.71 IDE In-Reply-To: <3FB93876.6000908@...9...> References: <3FB93876.6000908@...9...> Message-ID: <200311181741.19798.gambas@...1...> Le Lundi 17 Novembre 2003 22:07, Charlie a ?crit : > Salut, > > found the attached bug in the IDE > > Amicalement > > Charlie Hi, Charlie. Sorry, but I couldn't reproduce tyour bug on my computer (0.72pre). Maybe Fabien fixed it... Fabien ?? -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 18 17:42:33 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:42:33 +0100 Subject: [Gambas-user] "Native" arrays In-Reply-To: <200311171411.05447.leo.barnhoorn@...246...> References: <200311171411.05447.leo.barnhoorn@...246...> Message-ID: <200311181742.33638.gambas@...1...> Le Lundi 17 Novembre 2003 23:11, Leo Barnhoorn a ?crit : > Hallo Benoit, > > "Native" arrays > You declare them this way: > DIM MyArray[Dim1, Dim2, ... ] AS Integer/String/... > You can have up to eight dimensions. > > I make something like this in my program but it is not working. > > DIM aConsole[24, 79, 3] AS Integer/Integer/Integer > > I get a syntax error. Also when i use vars it is not working, the same > error. > > How can i use this kind of array. > > Regards, > Leo Barnhoorn. > > Hmm... Integer/String/... means Integer OR String OR any datatype. All array elements have the same datatype ! Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 18 17:52:53 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 17:52:53 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing In-Reply-To: <200311180902.04157.olinux@...289...> References: <200311180902.04157.olinux@...289...> Message-ID: <200311181752.53904.gambas@...1...> Hi, This is a important note for Olivier and other Gambas beginner. Maybe this warning should go on the wiki. You CAN'T put configuration file INSIDE the project, except if you are sure you won't modify them. When you make an 'executable', i.e. an compiled archive of your project, all files that were inside the project go in the archive, and then become read-only ! When you are developing in the IDE, Gambas does not prevent you from modifying these project files if you use absolute paths - Yes, it is not a good thing, but at the moment testing that is an overhead. So, Olivier, your configuration file must be stored: - Under user home directory - The standard path is ~/.gambas/MyProg.conf - Under /etc or /opt/Myprogram/etc, but this need root rights... Your program can do that when it is launched as root. Regards, -- Benoit Minisini mailto:gambas at ...1... From sourceforge-raindog2 at ...94... Tue Nov 18 18:12:29 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Tue, 18 Nov 2003 12:12:29 -0500 Subject: [Gambas-user] competition, sort of Message-ID: <200311181212.29983.sourceforge-raindog2@...94...> http://www.rekallrevealed.org/ TheKompany has released most of Rekall (basically, looks like everything except drivers for non-free DBMSes) as dual license, GPL and commercial. It uses Python as its scripting language rather than BASIC, and it's certainly more similar to MSAccess than to VB, but it is the second mature GPL RAD tool that I know of. Rob From olivier at ...289... Tue Nov 18 19:14:54 2003 From: olivier at ...289... (Olivier Coquet) Date: Tue, 18 Nov 2003 19:14:54 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing In-Reply-To: <200311181752.53904.gambas@...1...> References: <200311180902.04157.olinux@...289...> <200311181752.53904.gambas@...1...> Message-ID: <200311181914.54233.olivier@...289...> Le Mardi 18 Novembre 2003 17:52, Benoit Minisini a ?crit : > Hi, > > This is a important note for Olivier and other Gambas beginner. Maybe this > warning should go on the wiki. > > You CAN'T put configuration file INSIDE the project, except if you are sure > you won't modify them. ????? > > When you make an 'executable', i.e. an compiled archive of your project, > all files that were inside the project go in the archive, and then become > read-only ! when i make an executable, i have only one file !!!!!!! probably you want speak of archive which is not an executable? > > When you are developing in the IDE, Gambas does not prevent you from > modifying these project files if you use absolute paths - Yes, it is not a > good thing, but at the moment testing that is an overhead. I use only Application.Path to create and after to read my conf file, it's not an absolute path. "a priori" conf and filter must not exist at the first start of my prog. > > So, Olivier, your configuration file must be stored: > - Under user home directory - The standard path is ~/.gambas/MyProg.conf > - Under /etc or /opt/Myprogram/etc, but this need root rights... Your > program can do that when it is launched as root. or in Application.Path maybe :=) I made an error, effectively, archive must not contain anny conf (.conf) or filter (.flt), i've just forgoten to delete them before archiving, thanks for the suggest. > > Regards, Regards Olivier From girardhenri at ...67... Tue Nov 18 20:06:37 2003 From: girardhenri at ...67... (Henri Girard) Date: Tue, 18 Nov 2003 20:06:37 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing References: <200311180902.04157.olinux@...289...> <200311181752.53904.gambas@...1...> <200311181914.54233.olivier@...289...> Message-ID: Hi all :) I am trying to install strat :) but I never use mysql before... So i learned it first... then I will try strat and if I succees I will explain step by step how i make it :) Ciao :) Henri ----- Original Message ----- From: "Olivier Coquet" To: Sent: Tuesday, November 18, 2003 7:14 PM Subject: Re: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing Le Mardi 18 Novembre 2003 17:52, Benoit Minisini a ?crit : > Hi, > > This is a important note for Olivier and other Gambas beginner. Maybe this > warning should go on the wiki. > > You CAN'T put configuration file INSIDE the project, except if you are sure > you won't modify them. ????? > > When you make an 'executable', i.e. an compiled archive of your project, > all files that were inside the project go in the archive, and then become > read-only ! when i make an executable, i have only one file !!!!!!! probably you want speak of archive which is not an executable? > > When you are developing in the IDE, Gambas does not prevent you from > modifying these project files if you use absolute paths - Yes, it is not a > good thing, but at the moment testing that is an overhead. I use only Application.Path to create and after to read my conf file, it's not an absolute path. "a priori" conf and filter must not exist at the first start of my prog. > > So, Olivier, your configuration file must be stored: > - Under user home directory - The standard path is ~/.gambas/MyProg.conf > - Under /etc or /opt/Myprogram/etc, but this need root rights... Your > program can do that when it is launched as root. or in Application.Path maybe :=) I made an error, effectively, archive must not contain anny conf (.conf) or filter (.flt), i've just forgoten to delete them before archiving, thanks for the suggest. > > Regards, Regards Olivier ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...67... Tue Nov 18 20:16:06 2003 From: girardhenri at ...67... (Henri Girard) Date: Tue, 18 Nov 2003 20:16:06 +0100 Subject: [Gambas-user] wow... References: <200311180902.04157.olinux@...289...> <200311181752.53904.gambas@...1...> <200311181914.54233.olivier@...289...> Message-ID: I compiled gambas on fedora ... It's not the 1th time... But each time it's a success... But I couldn't connect to a data base because I wasn't aware of it... So after running mysql I run gambas and the database test which worked fine.. I am very happy because I never succeed on windows ! lol So now olivier i am trying your app :) Thanks all for this wonderfull job :) Henri From odisseo at ...299... Tue Nov 18 20:16:25 2003 From: odisseo at ...299... (odisseo at ...299...) Date: Tue, 18 Nov 2003 14:16:25 -0500 (EST) Subject: [Gambas-user] QUIT error Message-ID: <200311181916.OAA18178@...300...> >This is a bug that will be fix in the next version. If you want to quit >cleanly, close all opened windows. I don't understand what you mean with close all windows. By an internal subprocedure or simply by click the top right button [x] of the windows ? From gambas at ...1... Tue Nov 18 20:59:24 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 20:59:24 +0100 Subject: [Gambas-user] QUIT error In-Reply-To: <200311181916.OAA18178@...300...> References: <200311181916.OAA18178@...300...> Message-ID: <200311182059.25028.gambas@...1...> Le Mardi 18 Novembre 2003 20:16, odisseo at ...299... a ?crit : > >This is a bug that will be fix in the next version. If you want to quit > >cleanly, close all opened windows. > > I don't understand what you mean with close all windows. By an internal > subprocedure or simply by click the top right button [x] of the windows ? > The two ! :-) No, the first... Something like that : FOR EACH hWin IN Windows hWin.Close NEXT I don't know yet why I can do that in Gambas and not in the component. I think I will find... -- Benoit Minisini mailto:gambas at ...1... From rtsbasic at ...208... Tue Nov 18 22:30:37 2003 From: rtsbasic at ...208... (Richard Tough) Date: Tue, 18 Nov 2003 21:30:37 -0000 Subject: [Gambas-user] competition, sort of References: <200311181212.29983.sourceforge-raindog2@...94...> Message-ID: <009101c3ae1b$86f77460$0600a8c0@...302...> OSNews have a review of this product, http://www.osnews.com/story.php?news_id=5170 Would be nice to see a review of Gambas on there sometime, alas I'm locked by exsisting projects into Kylix so I haven't used it enough to do one. Richard ----- Original Message ----- From: "Rob" To: Sent: Tuesday, November 18, 2003 5:12 PM Subject: [Gambas-user] competition, sort of > http://www.rekallrevealed.org/ > > TheKompany has released most of Rekall (basically, looks like > everything except drivers for non-free DBMSes) as dual license, > GPL and commercial. It uses Python as its scripting language > rather than BASIC, and it's certainly more similar to MSAccess > than to VB, but it is the second mature GPL RAD tool that I know > of. > > Rob > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From olivier at ...289... Tue Nov 18 22:42:05 2003 From: olivier at ...289... (Olivier Coquet) Date: Tue, 18 Nov 2003 22:42:05 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing In-Reply-To: References: <200311180902.04157.olinux@...289...> <200311181914.54233.olivier@...289...> Message-ID: <200311182242.05688.olivier@...289...> Le Mardi 18 Novembre 2003 20:06, Henri Girard a ?crit : > Hi all :) > > I am trying to install strat :) but I never use mysql before... So i > learned it first... then I will try strat and if I succees I will explain > step by step how i make it :) > Ciao :) > Henri thanks for trying and tell us your succes or perhaps your unsucces..... regards Olivier From gambas at ...1... Tue Nov 18 22:47:37 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 18 Nov 2003 22:47:37 +0100 Subject: [Gambas-user] competition, sort of In-Reply-To: <009101c3ae1b$86f77460$0600a8c0@...302...> References: <200311181212.29983.sourceforge-raindog2@...94...> <009101c3ae1b$86f77460$0600a8c0@...302...> Message-ID: <200311182247.37490.gambas@...1...> Le Mardi 18 Novembre 2003 22:30, Richard Tough a ?crit : > OSNews have a review of this product, > http://www.osnews.com/story.php?news_id=5170 > Would be nice to see a review of Gambas on there sometime, alas I'm locked > by exsisting projects into Kylix so I haven't used it enough to do one. > > Richard > Eugenia Loli-Queru sent me a e-mail asking me to write an article for OSnews.com about Gambas, on 10 Apr 2003. But I never had the time to do that, and I was not very interested on speaking about my own project before having a stable version. And not being a journalist, I can't be neutral... ;-) -- Benoit Minisini mailto:gambas at ...1... From sourceforge-raindog2 at ...94... Tue Nov 18 22:48:48 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Tue, 18 Nov 2003 16:48:48 -0500 Subject: [Gambas-user] competition, sort of In-Reply-To: <009101c3ae1b$86f77460$0600a8c0@...302...> References: <200311181212.29983.sourceforge-raindog2@...94...> <009101c3ae1b$86f77460$0600a8c0@...302...> Message-ID: <200311181648.48217.sourceforge-raindog2@...94...> On Tuesday 18 November 2003 16:30, Richard Tough wrote: > OSNews have a review of this product, > http://www.osnews.com/story.php?news_id=5170 Data Architect is related to Rekall, but I don't think it's a straight superset. I think it's aimed at a higher end market than MS Access, even though it's 40 bucks. I also think something like DA could be written in Gambas without too much trouble, though I don't have that itch to scratch yet myself ;) Rob From girardhenri at ...67... Tue Nov 18 23:02:07 2003 From: girardhenri at ...67... (Henri Girard) Date: Tue, 18 Nov 2003 23:02:07 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing References: <200311180902.04157.olinux@...289...> <200311181914.54233.olivier@...289...> <200311182242.05688.olivier@...289...> Message-ID: well : It was success till I tried to update mysql to 4.xx :) lol Just a question your app works fine... but if I try to compile the source I am freezing in the menu choix de soci?t? ? I have to kill the app... even if I do an exe... Do I miss something ? Henri ----- Original Message ----- From: "Olivier Coquet" To: Sent: Tuesday, November 18, 2003 10:42 PM Subject: Re: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing Le Mardi 18 Novembre 2003 20:06, Henri Girard a ?crit : > Hi all :) > > I am trying to install strat :) but I never use mysql before... So i > learned it first... then I will try strat and if I succees I will explain > step by step how i make it :) > Ciao :) > Henri thanks for trying and tell us your succes or perhaps your unsucces..... regards Olivier ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...67... Tue Nov 18 23:04:36 2003 From: girardhenri at ...67... (Henri Girard) Date: Tue, 18 Nov 2003 23:04:36 +0100 Subject: [Gambas-user] competition, sort of References: <200311181212.29983.sourceforge-raindog2@...94...> <009101c3ae1b$86f77460$0600a8c0@...302...> Message-ID: Bad luck :) I try the address you communicated and will compare with "gambas"... Henri ----- Original Message ----- From: "Richard Tough" To: Sent: Tuesday, November 18, 2003 10:30 PM Subject: Re: [Gambas-user] competition, sort of > OSNews have a review of this product, > http://www.osnews.com/story.php?news_id=5170 > Would be nice to see a review of Gambas on there sometime, alas I'm locked > by exsisting projects into Kylix so I haven't used it enough to do one. > > Richard > > ----- Original Message ----- > From: "Rob" > To: > Sent: Tuesday, November 18, 2003 5:12 PM > Subject: [Gambas-user] competition, sort of > > > > http://www.rekallrevealed.org/ > > > > TheKompany has released most of Rekall (basically, looks like > > everything except drivers for non-free DBMSes) as dual license, > > GPL and commercial. It uses Python as its scripting language > > rather than BASIC, and it's certainly more similar to MSAccess > > than to VB, but it is the second mature GPL RAD tool that I know > > of. > > > > Rob > > > > > > > > ------------------------------------------------------- > > This SF. Net email is sponsored by: GoToMyPC > > GoToMyPC is the fast, easy and secure way to access your computer from > > any Web browser or wireless device. Click here to Try it Free! > > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From girardhenri at ...67... Tue Nov 18 23:05:49 2003 From: girardhenri at ...67... (Henri Girard) Date: Tue, 18 Nov 2003 23:05:49 +0100 Subject: [Gambas-user] competition, sort of References: <200311181212.29983.sourceforge-raindog2@...94...> <009101c3ae1b$86f77460$0600a8c0@...302...> <200311182247.37490.gambas@...1...> Message-ID: this honor you :) ----- Original Message ----- From: "Benoit Minisini" To: Sent: Tuesday, November 18, 2003 10:47 PM Subject: Re: [Gambas-user] competition, sort of Le Mardi 18 Novembre 2003 22:30, Richard Tough a ?crit : > OSNews have a review of this product, > http://www.osnews.com/story.php?news_id=5170 > Would be nice to see a review of Gambas on there sometime, alas I'm locked > by exsisting projects into Kylix so I haven't used it enough to do one. > > Richard > Eugenia Loli-Queru sent me a e-mail asking me to write an article for OSnews.com about Gambas, on 10 Apr 2003. But I never had the time to do that, and I was not very interested on speaking about my own project before having a stable version. And not being a journalist, I can't be neutral... ;-) -- Benoit Minisini mailto:gambas at ...1... ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From Karl.Reinl at ...9... Wed Nov 19 00:17:28 2003 From: Karl.Reinl at ...9... (Charlie Reinl) Date: Wed, 19 Nov 2003 00:17:28 +0100 Subject: [Gambas-user] about new releases Message-ID: <200311190017.28662.Karl.Reinl@...9...> Salut, just a question ------- do you thing EXEC and SHELL, will stay now like they are implemented in gambas-0.71 ???? or will they be changed till gambas-1.00 ??? amicalement Charlie From olivier at ...289... Wed Nov 19 03:11:04 2003 From: olivier at ...289... (Olivier Coquet) Date: Wed, 19 Nov 2003 03:11:04 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing In-Reply-To: References: <200311180902.04157.olinux@...289...> <200311182242.05688.olivier@...289...> Message-ID: <200311190311.04644.olivier@...289...> Le Mardi 18 Novembre 2003 23:02, Henri Girard a ?crit : > well : It was success till I tried to update mysql to 4.xx :) lol > Just a question your app works fine... but if I try to compile the source I > am freezing in the menu choix de soci?t? ? > I have to kill the app... even if I do an exe... Do I miss something ? > Henri question, are you using Gambas 0.71??? or other release???? as Benoit saied in precedent message, you must delete the Filters folder and the stratoria.conf file before compiling because they do not stay in the source folder, it's an error to let them stay here. I remake an archive without them as fast as possible. the source and the exec version are the same. Regards Olivier From olivier at ...289... Wed Nov 19 03:15:59 2003 From: olivier at ...289... (Olivier Coquet) Date: Wed, 19 Nov 2003 03:15:59 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing In-Reply-To: <200311190311.04644.olivier@...289...> References: <200311180902.04157.olinux@...289...> <200311190311.04644.olivier@...289...> Message-ID: <200311190315.59270.olivier@...289...> Le Mercredi 19 Novembre 2003 03:11, Olivier Coquet a ?crit : > Le Mardi 18 Novembre 2003 23:02, Henri Girard a ?crit : > > well : It was success till I tried to update mysql to 4.xx :) lol > > Just a question your app works fine... but if I try to compile the source > > I am freezing in the menu choix de soci?t? ? > > I have to kill the app... even if I do an exe... Do I miss something ? > > Henri > > question, are you using Gambas 0.71??? or other release???? > > as Benoit saied in precedent message, you must delete the Filters folder > and the stratoria.conf file before compiling because they do not stay in > the source folder, it's an error to let them stay here. I remake an archive > without them as fast as possible. > > the source and the exec version are the same. > > Regards > Olivier > Now package is up to date without Filters folder and wiyhout stratoria conf. Regards Olivier From olivier at ...289... Wed Nov 19 03:25:53 2003 From: olivier at ...289... (Olivier Coquet) Date: Wed, 19 Nov 2003 03:25:53 +0100 Subject: [Gambas-user] Stratoria V0.0.28b dispo pour test/dispo for testing In-Reply-To: References: <200311180902.04157.olinux@...289...> <200311182242.05688.olivier@...289...> Message-ID: <200311190325.53424.olivier@...289...> Le Mardi 18 Novembre 2003 23:02, Henri Girard a ?crit : > well : It was success till I tried to update mysql to 4.xx :) lol > Just a question your app works fine... but if I try to compile the source I > am freezing in the menu choix de soci?t? ? > I have to kill the app... even if I do an exe... Do I miss something ? > Henri I've understood your problemm As i say you in precedent message, if you use the tar.gz source, you have a file named Stratoria.conf in the source folder, this file is mine conf file, and there is absolutely no chance than your exec can connect to my server :=))))) delete this file compile the source and know when the program start it will ask you for entering some vital informations about your MySql connexion, it must work fine now ! package is ubgraded without this file on the server now, you can redownload it Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From danielcampos at ...282... Wed Nov 19 09:34:19 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Wed, 19 Nov 2003 09:34:19 CET Subject: [Gambas-user] Old problem. Message-ID: >> >>Do the following before binding the socket: >> >> int auth = 1; >> setsockopt(sock_fd, SOL_SOCKET, SO_REUSEADDR, &auth, sizeof(int)); >> >>I don't know if it works, I read this in a book, and I don't know if it works >>on other systems than Linux. >> Thanks, I didn't know that option at all, but I'll add it as seems to work fine. I've searched more about it at internet, and some people even thinks this is a bug from Linux sockets implementation. This option seems to be not standard, some UNIXes support it, some other support it but doesn't need it to "rebind" the socket, and some other does not support it... I've found that, for example : "--------------------------- Now back to the bug in Linux. When you open a socket, you must also call the setsockopt() function with the following segment of code: #ifdef LINUX opt = 1; len = sizeof(opt); setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&opt,&len); #endif The #ifdef and #endif statements are necessary only if you want to port the code over to systems other than Linux. Some UNIX systems might not support or require the SO_REUSEADDR flag. '----------------------------------------------------------- So people trying to port GAMBAS to FreeBSD or other systems will need to test that socket implementation in their O.S. Regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From radoslav.dejanovic at ...116... Wed Nov 19 17:48:14 2003 From: radoslav.dejanovic at ...116... (Radoslav =?iso-8859-2?q?Dejanovi=E6?=) Date: Wed, 19 Nov 2003 17:48:14 +0100 Subject: [Gambas-user] Lectures in marketing In-Reply-To: <200311182247.37490.gambas@...1...> References: <200311181212.29983.sourceforge-raindog2@...94...> <009101c3ae1b$86f77460$0600a8c0@...302...> <200311182247.37490.gambas@...1...> Message-ID: <200311191748.14910.radoslav.dejanovic@...116...> On Tuesday 18 November 2003 22:47, Benoit Minisini wrote: > Eugenia Loli-Queru sent me a e-mail asking me to write an article for > OSnews.com about Gambas, on 10 Apr 2003. But I never had the time to do > that, and I was not very interested on speaking about my own project > before having a stable version. And not being a journalist, I can't be > neutral... ;-) I hope you wouldn't mind a short lecture in marketing... ;) You see, lots of developers and professionals have wrong point of view. They think this way: "I'm so good, my products are soo useful, therefore I don't have to market them/self, for people will recognize me and come in wast numbers, making me rich and ego-happy." The above *isn't* really accurate. Gambas isn't a good example, for it does attract technically inclined people, as you can see. And every day more and more people do hear about it, and all this is a great stuff. However, the curve that represent number of Gambas users versus time would be much steeper if you could do just a little bit of marketing your product. For a hunded people who like Gambas, there are hundreds of thousands that have never heard of it, and of those many thousands you might gain another hundred people to like your product. What good is that? Of course, we're not talking money here. There's some other wery valuable asset you have - your users. They're the most important asset of Gambas, for if it wasn't about them (and surely it isn't about the money), your product wouldn't go that far. Think of having really big number of testers, feature dreamers, addon developers... in a bigger community you get better chance to get more smart people who could push the development. To get this, you do have to forget about your modesty and talk to the people about Gambas. Sure, write an article! Have some journalist interview you and ask you some not-too-briliant questions. Answer them with patience and understanding. Create a public image of you and your product! Let the world know that there's some sort of "Visual Basic for Linux" that is in development stage, but already promises a lot! Get more people. Get a lot of them and you'll see that this will raise the speed of development, and quality of the product as well. ;) -- Radoslav Dejanovic founder and director Operacijski sustavi d.o.o. http://www.opsus.hr From sourceforge-raindog2 at ...94... Wed Nov 19 18:48:50 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Wed, 19 Nov 2003 12:48:50 -0500 Subject: [Gambas-user] Lectures in marketing In-Reply-To: <200311191748.14910.radoslav.dejanovic@...116...> References: <200311181212.29983.sourceforge-raindog2@...94...> <200311182247.37490.gambas@...1...> <200311191748.14910.radoslav.dejanovic@...116...> Message-ID: <200311191248.50357.sourceforge-raindog2@...94...> On Wednesday 19 November 2003 11:48, Radoslav Dejanovi? wrote: > Get more people. Get a lot of them and you'll see that this > will raise the speed of development, and quality of the > product as well. ;) I actually agree with Benoit. I promote Gambas everywhere I go via word of mouth, but I don't think a coordinated "marketing campaign" is warranted until the language is a little more "set in stone" and version 1.0 is released. Yes, we all know it's ready for prime time now, but you'd be amazed at the number of people who hear about NiftyWare 0.8 and go "Huh, that's cool, I'll have to remember to go back and look in a year to see if they've hit 1.0" and then never do. Especially among the corporate IT people to whom Gambas will hold the most appeal. Rob From girardhenri at ...67... Wed Nov 19 19:46:32 2003 From: girardhenri at ...67... (Henri Girard) Date: Wed, 19 Nov 2003 19:46:32 +0100 Subject: [Gambas-user] Lectures in marketing References: <200311181212.29983.sourceforge-raindog2@...94...> <200311182247.37490.gambas@...1...> <200311191748.14910.radoslav.dejanovic@...116...> <200311191248.50357.sourceforge-raindog2@...94...> Message-ID: I talk to Arklinux about gambas and one said to me he will compile it for AL :) ----- Original Message ----- From: "Rob" To: Sent: Wednesday, November 19, 2003 6:48 PM Subject: Re: [Gambas-user] Lectures in marketing On Wednesday 19 November 2003 11:48, Radoslav Dejanovi? wrote: > Get more people. Get a lot of them and you'll see that this > will raise the speed of development, and quality of the > product as well. ;) I actually agree with Benoit. I promote Gambas everywhere I go via word of mouth, but I don't think a coordinated "marketing campaign" is warranted until the language is a little more "set in stone" and version 1.0 is released. Yes, we all know it's ready for prime time now, but you'd be amazed at the number of people who hear about NiftyWare 0.8 and go "Huh, that's cool, I'll have to remember to go back and look in a year to see if they've hit 1.0" and then never do. Especially among the corporate IT people to whom Gambas will hold the most appeal. Rob ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...67... Wed Nov 19 19:49:17 2003 From: girardhenri at ...67... (Henri Girard) Date: Wed, 19 Nov 2003 19:49:17 +0100 Subject: [Gambas-user] Lectures in marketing References: <200311181212.29983.sourceforge-raindog2@...94...> <009101c3ae1b$86f77460$0600a8c0@...302...> <200311182247.37490.gambas@...1...> <200311191748.14910.radoslav.dejanovic@...116...> Message-ID: Sorry to contredict you : Marketing is not a good thing ! Marketing is chapel (church to capitalism)... Marketing is evil to human being... kind regards Henri ----- Original Message ----- From: "Radoslav Dejanovi?" To: Sent: Wednesday, November 19, 2003 5:48 PM Subject: [Gambas-user] Lectures in marketing > On Tuesday 18 November 2003 22:47, Benoit Minisini wrote: > > Eugenia Loli-Queru sent me a e-mail asking me to write an article for > > OSnews.com about Gambas, on 10 Apr 2003. But I never had the time to do > > that, and I was not very interested on speaking about my own project > > before having a stable version. And not being a journalist, I can't be > > neutral... ;-) > > I hope you wouldn't mind a short lecture in marketing... ;) > > You see, lots of developers and professionals have wrong point of view. > They think this way: "I'm so good, my products are soo useful, therefore I > don't have to market them/self, for people will recognize me and come in > wast numbers, making me rich and ego-happy." > > The above *isn't* really accurate. Gambas isn't a good example, for it does > attract technically inclined people, as you can see. And every day more > and more people do hear about it, and all this is a great stuff. > > However, the curve that represent number of Gambas users versus time > would be much steeper if you could do just a little bit of marketing your > product. For a hunded people who like Gambas, there are hundreds of > thousands that have never heard of it, and of those many thousands you > might gain another hundred people to like your product. > > What good is that? Of course, we're not talking money here. There's some > other wery valuable asset you have - your users. They're the most > important asset of Gambas, for if it wasn't about them (and surely it > isn't about the money), your product wouldn't go that far. > > Think of having really big number of testers, feature dreamers, addon > developers... in a bigger community you get better chance to get more > smart people who could push the development. > > To get this, you do have to forget about your modesty and talk to the > people about Gambas. Sure, write an article! Have some journalist > interview you and ask you some not-too-briliant questions. Answer them > with patience and understanding. Create a public image of you and your > product! Let the world know that there's some sort of "Visual Basic for > Linux" that is in development stage, but already promises a lot! > > Get more people. Get a lot of them and you'll see that this will raise the > speed of development, and quality of the product as well. ;) > > -- > Radoslav Dejanovic > founder and director > Operacijski sustavi d.o.o. http://www.opsus.hr > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Wed Nov 19 20:42:54 2003 From: gambas at ...1... (Benoit Minisini) Date: Wed, 19 Nov 2003 20:42:54 +0100 Subject: [Gambas-user] about new releases In-Reply-To: <200311190017.28662.Karl.Reinl@...9...> References: <200311190017.28662.Karl.Reinl@...9...> Message-ID: <200311192042.54206.gambas@...1...> Le Mercredi 19 Novembre 2003 00:17, Charlie Reinl a ?crit : > Salut, > > just a question > ------- > do you thing EXEC and SHELL, will stay now like they are implemented in > gambas-0.71 ???? or will they be changed till gambas-1.00 ??? > > amicalement Charlie > What are you afraid of ? :-) I don't think they will change, but there is a problem that remains: when you use EXEC or SHELL with WAIT, the interpreter waits for the process end without calling the event loop. Doing that cleanly needs a system call that does not exist on Linux (pselect) but that seems to be emulated by the GNU libc. Maybe I will use it before the 1.0, maybe not if this is too complicated. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Wed Nov 19 20:54:36 2003 From: gambas at ...1... (Benoit Minisini) Date: Wed, 19 Nov 2003 20:54:36 +0100 Subject: [Gambas-user] Old problem. In-Reply-To: References: Message-ID: <200311192054.36980.gambas@...1...> Le Mercredi 19 Novembre 2003 13:34, danielcampos at ...282... a ?crit : > >>Do the following before binding the socket: > >> > >> int auth = 1; > >> setsockopt(sock_fd, SOL_SOCKET, SO_REUSEADDR, &auth, sizeof(int)); > >> > >>I don't know if it works, I read this in a book, and I don't know if it > >> works on other systems than Linux. > > Thanks, I didn't know that option at all, but I'll add it as seems to work > fine. I've searched more about it at internet, and some people even thinks > this is a bug from Linux sockets implementation. This option seems to be > not standard, some UNIXes support it, some other support it but doesn't > need it to "rebind" the socket, and some other does not support it... I've > found that, for example : > > "--------------------------- > Now back to the bug in Linux. When you open a socket, you must also call > the setsockopt() function with the following segment of code: > > #ifdef LINUX > > opt = 1; len = sizeof(opt); > setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&opt,&len); > #endif setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&opt,len); /* Without the '&' */ > > > The #ifdef and #endif statements are necessary only if you want to port the > code over to systems other than Linux. Some UNIX systems might not support > or require the SO_REUSEADDR flag. > > '----------------------------------------------------------- > > So people trying to port GAMBAS to FreeBSD or other systems will need to > test that socket implementation in their O.S. > > Regards, > > Daniel Campos > > This is not a bug, this is a Linux feature ! :-) When you close the socket, the kernel must keep the socket alive because the TCP protocol must guarantee the data integrity, and so the kernel must check that all pending data are sent and received before effectively destroy the socket. By default, you can reuse a closed port after about one minute. Regards, -- Benoit Minisini mailto:gambas at ...1... From eng_ak at ...200... Thu Nov 20 08:45:34 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Thu, 20 Nov 2003 09:45:34 +0200 Subject: [Gambas-user] Lectures in marketing In-Reply-To: <200311191248.50357.sourceforge-raindog2@...94...> References: <200311181212.29983.sourceforge-raindog2@...94...> <200311182247.37490.gambas@...1...> <200311191748.14910.radoslav.dejanovic@...116...> <200311191248.50357.sourceforge-raindog2@...94...> Message-ID: <3FBC711E.1000908@...200...> I agree but still, now at ver 0.71, we're not so far from ver 1.0 :) And I think Gambas, is in a good shape now. We shouldn't be shy to show it to everyone. Also, GB is being developed slowly IMHO, as Benoit doesn't have much time, a review at a website, would atrract hundreds of devs which may helps us develop GB at a higher rate! And once it makes it to fedora, or other major distros, the flood will begin :) regards Rob wrote: > On Wednesday 19 November 2003 11:48, Radoslav Dejanovi? wrote: > >>Get more people. Get a lot of them and you'll see that this >>will raise the speed of development, and quality of the >>product as well. ;) > > > I actually agree with Benoit. I promote Gambas everywhere I go > via word of mouth, but I don't think a coordinated "marketing > campaign" is warranted until the language is a little more "set > in stone" and version 1.0 is released. > > Yes, we all know it's ready for prime time now, but you'd be > amazed at the number of people who hear about NiftyWare 0.8 and > go "Huh, that's cool, I'll have to remember to go back and look > in a year to see if they've hit 1.0" and then never do. > Especially among the corporate IT people to whom Gambas will > hold the most appeal. > > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From danielcampos at ...282... Thu Nov 20 11:19:28 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Thu, 20 Nov 2003 11:19:28 CET Subject: [Gambas-user] A little of Gambas Code Message-ID: Hi all: Here's a piece of Gambas code (not all can be C and C++). Resizable formularies are pretty, but usually a lot of code is needed to place each control in its place each time the user changes formulary appearance. I've written a class to allow resize formularies with only a bit of code. I hope this will be useful for many people. The sources contains the class and an example. Regards, Daniel Campos BTW : may be this code could have a place in Gambas wiki? ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) -------------- next part -------------- A non-text attachment was scrubbed... Name: Resizable.tar.gz Type: application/x-gzip Size: 1658 bytes Desc: not available URL: From gambas at ...1... Thu Nov 20 13:04:10 2003 From: gambas at ...1... (Benoit Minisini) Date: Thu, 20 Nov 2003 13:04:10 +0100 Subject: [Gambas-user] A little of Gambas Code In-Reply-To: References: Message-ID: <200311201304.10927.gambas@...1...> Le Jeudi 20 Novembre 2003 15:19, danielcampos at ...282... a ?crit : > Hi all: > > Here's a piece of Gambas code (not all can be C and C++). > > Resizable formularies are pretty, but usually a lot of code is needed to > place each control in its place each time the user changes formulary > appearance. > > I've written a class to allow resize formularies with only a bit of code. > > I hope this will be useful for many people. > > The sources contains the class and an example. > > Regards, > > Daniel Campos > > BTW : may be this code could have a place in Gambas wiki? > > It can be useful. A better thing could be modifying the QT component so that it manages an internal scale for every control coordinates. This scale would depends on the size of the default system font and the size of the font used to create the interface in the IDE. Scale = CurrentFontSize / DevelFontSize ' For example And, internally, RealCoordinate = SpecifiedCoordinate * Scale Regards, -- Benoit Minisini mailto:gambas at ...1... From cbonnet at ...303... Thu Nov 20 13:15:07 2003 From: cbonnet at ...303... (Christophe BONNET) Date: Thu, 20 Nov 2003 13:15:07 +0100 Subject: [Gambas-user] Quelques questions sur GAMBAS (0.7x) Message-ID: <3FBCB04B.1020608@...303...> Hi everibody, I've got some questions about gambas : - Why all the gamba users speak english ? there's no french version ... - How can i use the debugger ? - Is there a site (web/ftp) where i can put my example of code for everybody ? I hope you can understand me ... Thank you From gambas at ...1... Thu Nov 20 13:30:44 2003 From: gambas at ...1... (Benoit Minisini) Date: Thu, 20 Nov 2003 13:30:44 +0100 Subject: [Gambas-user] Quelques questions sur GAMBAS (0.7x) In-Reply-To: <3FBCB04B.1020608@...303...> References: <3FBCB04B.1020608@...303...> Message-ID: <200311201330.44130.gambas@...1...> Le Jeudi 20 Novembre 2003 13:15, Christophe BONNET a ?crit : > Hi everibody, > > I've got some questions about gambas : > > - Why all the gamba users speak english ? there's no french version ... This is an international mailing-list. And any message can be useful for anyone. > - How can i use the debugger ? By pressing F8 :-), F9 to set or unset breakpoint... This is a bit like in VB. Not completely terminated, but useful even so. > - Is there a site (web/ftp) where i can put my example of code for > everybody ? Two solutions: - If you find that your examples are useful to everybody, send me them and I will add them in the Gambas source package. - Or you can create your own website ! > > I hope you can understand me ... > > Thank you > Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Thu Nov 20 14:16:16 2003 From: gambas at ...1... (Benoit Minisini) Date: Thu, 20 Nov 2003 14:16:16 +0100 Subject: [Gambas-user] gambas 0.72 Message-ID: <200311201416.16048.gambas@...1...> Hi, Gambas users, Here is the 0.72 version of Gambas: - The network component of Daniel Campos has been integrated. - I did many clean-up in the source code so that Gambas compiles under CygWin. At the moment, just the compiler and the interpreter compile, and the interpreter does not work ! - I fix many bugs reported by users. Here is a list of the problems I want to fix before the 1.0 release: 1) Clean up the 'introspection' mechanism, i.e. the Symbol, Class and Component classes. 2) Having a better image processing class: at the moment, you can access pixels, replace colored pixels by transparent pixels, flip, stretch or rotate an image. I'd like to have more powerful functions and a more beautiful interface to this functions :-) 3) I'd like to be sure that gambas install and run correctly on all Linux distributions, so don't hesitate to tell me when you can't do that with your distribution, or when you can, so that I know. I have only a Mandrake 9.2 at home, no VMWare yet ! 4) At the moment, you need to call Conv$() to convert Desktop.Charset to System.Charset, and it is boring. For example, if you type a file name with non-ASCII characters in your source code, then it is stored as UTF-8 character. If you want to open this file with OPEN, you need to convert the file name to System.Charset (ISO-8859-15 on my Mandrake) before. This is not needed on systems like RedHat that use UTF-8 everywhere. Maybe I should simulate UTF-8 file system internally in the interpreter, i.e. do the conversion automatically ? 5) Having an updated documentation on the Wiki made by Rob. I hope this will come soon ;-) And, of course, if you see other important points, tell them on this mailing-list ! Regards, -- Benoit Minisini mailto:gambas at ...1... From girardhenri at ...67... Thu Nov 20 14:32:30 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 20 Nov 2003 14:32:30 +0100 Subject: [Gambas-user] gambas 0.72 References: <200311201416.16048.gambas@...1...> Message-ID: Hi :) I am trying to compile gambas on kde-cygwin but I have kde and qt which are disabled ? how can I setup it for not being disabled ? Henri ----- Original Message ----- From: "Benoit Minisini" To: Sent: Thursday, November 20, 2003 2:16 PM Subject: [Gambas-user] gambas 0.72 > Hi, Gambas users, > > Here is the 0.72 version of Gambas: > > - The network component of Daniel Campos has been integrated. > > - I did many clean-up in the source code so that Gambas compiles under CygWin. > At the moment, just the compiler and the interpreter compile, and the > interpreter does not work ! > > - I fix many bugs reported by users. > > Here is a list of the problems I want to fix before the 1.0 release: > > 1) Clean up the 'introspection' mechanism, i.e. the Symbol, Class and > Component classes. > > 2) Having a better image processing class: at the moment, you can access > pixels, replace colored pixels by transparent pixels, flip, stretch or rotate > an image. I'd like to have more powerful functions and a more beautiful > interface to this functions :-) > > 3) I'd like to be sure that gambas install and run correctly on all Linux > distributions, so don't hesitate to tell me when you can't do that with your > distribution, or when you can, so that I know. I have only a Mandrake 9.2 at > home, no VMWare yet ! > > 4) At the moment, you need to call Conv$() to convert Desktop.Charset to > System.Charset, and it is boring. For example, if you type a file name with > non-ASCII characters in your source code, then it is stored as UTF-8 > character. If you want to open this file with OPEN, you need to convert the > file name to System.Charset (ISO-8859-15 on my Mandrake) before. This is not > needed on systems like RedHat that use UTF-8 everywhere. Maybe I should > simulate UTF-8 file system internally in the interpreter, i.e. do the > conversion automatically ? > > 5) Having an updated documentation on the Wiki made by Rob. I hope this will > come soon ;-) > > And, of course, if you see other important points, tell them on this > mailing-list ! > > Regards, > > -- > Benoit Minisini > mailto:gambas at ...1... > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From info at ...304... Thu Nov 20 15:45:34 2003 From: info at ...304... (Edisoft srl) Date: 20 Nov 2003 15:45:34 +0100 Subject: [Gambas-user] Help compiling Gambas on redhat 9 Message-ID: <1069339534.2397.19.camel@...305...> Hi :) I am trying to compile gambas on redhat 9 (shrike). Once compiled. linked and installed (all seems OK) I have the following messagge from /usr/bin/gbx usr/bin/gbx: relocation error: /usr/lib/qt-3.1/lib/libqt-mt.so.3: undefined symbol: _ZNSs4_Rep11_S_terminalE I have tried installing libqt.3.1.2 (unsuccessfully. ) Can anyone help me ? Thank you in advance Giovanni From sourceforge-raindog2 at ...94... Thu Nov 20 16:04:51 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Thu, 20 Nov 2003 10:04:51 -0500 Subject: [Gambas-user] A little of Gambas Code In-Reply-To: <200311201304.10927.gambas@...1...> References: <200311201304.10927.gambas@...1...> Message-ID: <200311201004.51982.sourceforge-raindog2@...94...> On Thursday 20 November 2003 07:04, Benoit Minisini wrote: > A better thing could be modifying the QT component so that it > manages an internal scale for every control coordinates. This > scale would depends on the size of the default system font and > the size of the font used to create the interface in the IDE. As long as it doesn't do that all the time; if your dialog is a bunch of buttons and checkboxes, sure, but for example if you're writing a text editor you'll want the editor widget to grow (but the font to stay the same) while the other widgets retain their size, more or less. I think implementing some of the Qt layout widgets could go a long way towards making this easier, and maybe optionally the ability to tie a layout widget to a form so the top level controls are automatically resized as you can do in Qt apps. Gtk has layout managers too so it's not like you'd be doing something overly Qt-specific. I guess if no one's done this in a year or so I might take a stab at it ;) "stab" is about the kindest term you can use to refer to my attempts at C++... Rob From sourceforge-raindog2 at ...94... Thu Nov 20 16:21:26 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Thu, 20 Nov 2003 10:21:26 -0500 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311201416.16048.gambas@...1...> References: <200311201416.16048.gambas@...1...> Message-ID: <200311201013.38508.sourceforge-raindog2@...94...> On Thursday 20 November 2003 08:16, Benoit Minisini wrote: > 2) Having a better image processing class: at the moment, you > can access pixels, replace colored pixels by transparent > pixels, flip, stretch or rotate an image. I'd like to have > more powerful functions and a more beautiful interface to this > functions :-) I've been meaning to try to brush up on my C and start working on a Gambas component that wraps ImageMagick, which does everything you're talking about and more, but I haven't had time and I won't have time for a while. But maybe ImageMagick would be a good (and toolkit independent) solution to Gambas' image processing needs? >5) Having an updated documentation on the Wiki made by Rob. I >hope this will come soon ;-) If you can think of any more changes that you'd like, tell me now so I can include them the next time I have a block of time to do the wiki (probably next week when I go away for the holiday...) Rob From sourceforge-raindog2 at ...94... Thu Nov 20 16:09:23 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Thu, 20 Nov 2003 10:09:23 -0500 Subject: [Gambas-user] Quelques questions sur GAMBAS (0.7x) In-Reply-To: <3FBCB04B.1020608@...303...> References: <3FBCB04B.1020608@...303...> Message-ID: <200311201009.23382.sourceforge-raindog2@...94...> On Thursday 20 November 2003 07:15, Christophe BONNET wrote: > - Is there a site (web/ftp) where i can put my example of code > for everybody ? Feel free to add your example code (maybe with a little documentation, a screenshot or something...) to a new page in the wiki. Don't worry about where you put it. The closest we have to an example section is the "How do I" section which isn't finished, but you could put it there if you like. http://www.binara.com/gambas-wiki/ Also, I did set up alternate wikis for people to start translating Gambas documentation, but they've never had much work done on them. Feel free to jump in on the French side. At this point it might be very out of date though.... Rob From gambas at ...1... Thu Nov 20 17:43:25 2003 From: gambas at ...1... (Benoit Minisini) Date: Thu, 20 Nov 2003 17:43:25 +0100 Subject: [Gambas-user] A little of Gambas Code In-Reply-To: <200311201004.51982.sourceforge-raindog2@...94...> References: <200311201304.10927.gambas@...1...> <200311201004.51982.sourceforge-raindog2@...94...> Message-ID: <200311201743.25618.gambas@...1...> Le Jeudi 20 Novembre 2003 16:04, Rob a ?crit : > > I think implementing some of the Qt layout widgets could go a > long way towards making this easier, and maybe optionally the > ability to tie a layout widget to a form so the top level > controls are automatically resized as you can do in Qt apps. > Gtk has layout managers too so it's not like you'd be doing > something overly Qt-specific. > Of course you are right :-) This will be for the next version... Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Thu Nov 20 17:44:45 2003 From: gambas at ...1... (Benoit Minisini) Date: Thu, 20 Nov 2003 17:44:45 +0100 Subject: [Gambas-user] gambas 0.72 In-Reply-To: References: <200311201416.16048.gambas@...1...> Message-ID: <200311201744.45505.gambas@...1...> Le Jeudi 20 Novembre 2003 14:32, Henri Girard a ?crit : > Hi :) > I am trying to compile gambas on kde-cygwin but I have kde and qt which are > disabled ? > how can I setup it for not being disabled ? > Henri You can't. These components are disabled if the QT headers or the QT libraries cannot be found. Just tell me how to install the QT libraries and where the header and the libraries are located. Regards, -- Benoit Minisini mailto:gambas at ...1... From eng_ak at ...200... Thu Nov 20 18:24:47 2003 From: eng_ak at ...200... (Ahmad Kamal) Date: Thu, 20 Nov 2003 19:24:47 +0200 Subject: [Gambas-user] Help compiling Gambas on redhat 9 In-Reply-To: <1069339534.2397.19.camel@...305...> References: <1069339534.2397.19.camel@...305...> Message-ID: <3FBCF8DF.8000501@...200...> It doesn't work on RH9, without updating the QT libraries Edisoft srl wrote: > Hi :) > I am trying to compile gambas on redhat 9 (shrike). > > Once compiled. linked and installed (all seems OK) I have the following > messagge from /usr/bin/gbx > > usr/bin/gbx: relocation error: /usr/lib/qt-3.1/lib/libqt-mt.so.3: > undefined symbol: _ZNSs4_Rep11_S_terminalE > > I have tried installing libqt.3.1.2 (unsuccessfully. ) > > Can anyone help me ? > > Thank you in advance > Giovanni > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From olinux at ...289... Thu Nov 20 19:15:18 2003 From: olinux at ...289... (Olivier Coquet) Date: Thu, 20 Nov 2003 19:15:18 +0100 Subject: [Gambas-user] 0.72 compilation report Message-ID: <200311201914.57652.olinux@...289...> System FEDORA core 1 Kernel 2.4.22-1 Smp configure: OK make: OK make install: OK Run OK Nice job !!!!!! Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From girardhenri at ...67... Thu Nov 20 19:19:22 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 20 Nov 2003 19:19:22 +0100 Subject: Fw: [Gambas-user] gambas 0.72 Message-ID: I forget... copy them in cygwin cd cygwin tar xvfj qt* I did it with the automatic setup they provide now with kde-cygwin... It's the quickest way to have everything installed properly.. as they are a lot of files Henri ----- Original Message ----- From: "Henri Girard" To: Sent: Thursday, November 20, 2003 7:15 PM Subject: Re: [Gambas-user] gambas 0.72 > On cygwin installation (dir c:\cygwin\lib\qt3) > > > that's where they are > > http://prdownloads.sourceforge.net/kde-cygwin/qt-3.0.4-b1.tar.bz2 > > > ----- Original Message ----- > From: "Benoit Minisini" > To: > Sent: Thursday, November 20, 2003 5:44 PM > Subject: Re: [Gambas-user] gambas 0.72 > > > Le Jeudi 20 Novembre 2003 14:32, Henri Girard a ?crit : > > Hi :) > > I am trying to compile gambas on kde-cygwin but I have kde and qt which > are > > disabled ? > > how can I setup it for not being disabled ? > > Henri > > You can't. These components are disabled if the QT headers or the QT > libraries > cannot be found. Just tell me how to install the QT libraries and where the > header and the libraries are located. > > Regards, > > -- > Benoit Minisini > mailto:gambas at ...1... > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From olinux at ...289... Thu Nov 20 19:19:36 2003 From: olinux at ...289... (Olivier Coquet) Date: Thu, 20 Nov 2003 19:19:36 +0100 Subject: [Gambas-user] 0.72 compilation report In-Reply-To: <200311201914.57652.olinux@...289...> References: <200311201914.57652.olinux@...289...> Message-ID: <200311201919.36876.olinux@...289...> Le Jeudi 20 Novembre 2003 19:15, Olivier Coquet a ?crit : > System FEDORA core 1 > Kernel 2.4.22-1 Smp > > > configure: OK > make: OK > make install: OK > > Run OK > > Nice job !!!!!! > > Regards > Olivier Coquet > Strat&Co > http://stratoria.dynu.net:85/ Ooops sorry for the "bad joyce" run but.....sdl, net and networking help is no more available :=(((((((((( Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From girardhenri at ...67... Thu Nov 20 19:28:12 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 20 Nov 2003 19:28:12 +0100 Subject: [Gambas-user] 0.72 compilation report References: <200311201914.57652.olinux@...289...> <200311201919.36876.olinux@...289...> Message-ID: well : I am on wanadoo ethernet cable and I got lot of problems to connect... cable connects well if I start ADSL/DSL activation if I activate both net and cable .. I can' t get an internet connection... Very strange behavior ? good luck :) Henri (I have mess my mysql 3xxx because i wanted to install 4xxxx on fedora... and now both aren't any more working !!! ) ----- Original Message ----- From: "Olivier Coquet" To: Sent: Thursday, November 20, 2003 7:19 PM Subject: Re: [Gambas-user] 0.72 compilation report Le Jeudi 20 Novembre 2003 19:15, Olivier Coquet a ?crit : > System FEDORA core 1 > Kernel 2.4.22-1 Smp > > > configure: OK > make: OK > make install: OK > > Run OK > > Nice job !!!!!! > > Regards > Olivier Coquet > Strat&Co > http://stratoria.dynu.net:85/ Ooops sorry for the "bad joyce" run but.....sdl, net and networking help is no more available :=(((((((((( Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From girardhenri at ...67... Thu Nov 20 19:37:43 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 20 Nov 2003 19:37:43 +0100 Subject: [Gambas-user] 0.72 compilation report References: <200311201914.57652.olinux@...289...> Message-ID: comment about "actualit?" : I connected with mysql very easily and when I discovered gambas db manager it's a wonder... Having worked years with access I was really fed up how it's behaving :) (Fortunatly my second PC works fine with mysql ! lol) Henri ----- Original Message ----- From: "Olivier Coquet" To: Sent: Thursday, November 20, 2003 7:15 PM Subject: [Gambas-user] 0.72 compilation report > > System FEDORA core 1 > Kernel 2.4.22-1 Smp > > > configure: OK > make: OK > make install: OK > > Run OK > > Nice job !!!!!! > > Regards > Olivier Coquet > Strat&Co > http://stratoria.dynu.net:85/ > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From henrigirard at ...11... Thu Nov 20 19:42:42 2003 From: henrigirard at ...11... (Henri Girard) Date: Thu, 20 Nov 2003 19:42:42 +0100 Subject: [Gambas-user] gambas 0.72 References: <200311201416.16048.gambas@...1...> <200311201744.45505.gambas@...1...> Message-ID: <006401c3af96$153843f0$0100a8c0@...306...> Here is the beginning of the compiling error on kde-cygwin ----- Original Message ----- From: "Benoit Minisini" To: Sent: Thursday, November 20, 2003 5:44 PM Subject: Re: [Gambas-user] gambas 0.72 Le Jeudi 20 Novembre 2003 14:32, Henri Girard a ?crit : > Hi :) > I am trying to compile gambas on kde-cygwin but I have kde and qt which are > disabled ? > how can I setup it for not being disabled ? > Henri You can't. These components are disabled if the QT headers or the QT libraries cannot be found. Just tell me how to install the QT libraries and where the header and the libraries are located. Regards, -- Benoit Minisini mailto:gambas at ...1... ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: galog.txt URL: From danielcampos at ...277... Fri Nov 21 00:04:21 2003 From: danielcampos at ...277... (daniel) Date: Thu, 20 Nov 2003 23:04:21 +0000 Subject: [Gambas-user] 0.72 compilation report In-Reply-To: <200311201919.36876.olinux@...289...> References: <200311201914.57652.olinux@...289...> <200311201919.36876.olinux@...289...> Message-ID: <1069369461.2246.0.camel@...278...> El jue, 20-11-2003 a las 18:19, Olivier Coquet escribi?: > Le Jeudi 20 Novembre 2003 19:15, Olivier Coquet a ?crit : > > System FEDORA core 1 > > Kernel 2.4.22-1 Smp > > > > > > configure: OK > Ooops sorry for the "bad joyce" > > run but.....sdl, net and networking help is no more available :=(((((((((( > You have net documentation placed at {sources}/src/lib/net/doc Regards, Daniel Campos > Regards > Olivier Coquet > Strat&Co > http://stratoria.dynu.net:85/ > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From Karl.Reinl at ...9... Fri Nov 21 00:33:51 2003 From: Karl.Reinl at ...9... (Charlie Reinl) Date: Fri, 21 Nov 2003 00:33:51 +0100 Subject: [Gambas-user] IDE 0.72 and gambas 0.72 Message-ID: <200311210033.51194.Karl.Reinl@...9...> Salut, first: on gentoo 1.4 (most from package) the 3 run well. seconde: IDE crash if you chose an empty folder after 'new project' or 'open project' and you make a right mouseclick , on the right empty gambas fileselector windos. Error : Not an opject amicalement Charlie From girardhenri at ...67... Thu Nov 20 19:15:19 2003 From: girardhenri at ...67... (Henri Girard) Date: Thu, 20 Nov 2003 19:15:19 +0100 Subject: [Gambas-user] gambas 0.72 References: <200311201416.16048.gambas@...1...> <200311201744.45505.gambas@...1...> Message-ID: On cygwin installation (dir c:\cygwin\lib\qt3) that's where they are http://prdownloads.sourceforge.net/kde-cygwin/qt-3.0.4-b1.tar.bz2 ----- Original Message ----- From: "Benoit Minisini" To: Sent: Thursday, November 20, 2003 5:44 PM Subject: Re: [Gambas-user] gambas 0.72 Le Jeudi 20 Novembre 2003 14:32, Henri Girard a ?crit : > Hi :) > I am trying to compile gambas on kde-cygwin but I have kde and qt which are > disabled ? > how can I setup it for not being disabled ? > Henri You can't. These components are disabled if the QT headers or the QT libraries cannot be found. Just tell me how to install the QT libraries and where the header and the libraries are located. Regards, -- Benoit Minisini mailto:gambas at ...1... ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From leo.barnhoorn at ...246... Sat Nov 22 09:14:48 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sat, 22 Nov 2003 00:14:48 -0800 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311201416.16048.gambas@...1...> References: <200311201416.16048.gambas@...1...> Message-ID: <200311220014.48638.leo.barnhoorn@...246...> Hallo Benoit, ./configure OK. make OK. make install OK. On SuSE Linux version 8.2 I have one problem, i do not know what it is but it is not working anymore. This is the problem: FOR EACH hWin IN wrkBase.Children INC iInd hMenu = NEW Menu(mnuWindow) AS "mnuOneWindow" hMenu.Text = "&" & CStr(iInd) & " " & hWin.Text hMenu.Checked = hWin = wrkBase.ActiveWindow hMenu.Tag = hWin NEXT PUBLIC SUB mnuOneWindow_Click() Here is the problem. It will not show my Window anymore. LAST.Tag.Show END If you want to see what i mean, the same problem you will find in the Database Manager. Open some tabels and then by menuoption Window show the open tabels in the windows. Here it is not working. I hoop this makes sence. Thanks Benoit. Regards, Leo Barnhoorn. On Thursday 20 November 2003 05:16, Benoit Minisini wrote: > Hi, Gambas users, > > Here is the 0.72 version of Gambas: > > Regards, > > -- > Benoit Minisini > mailto:gambas at ...1... > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From grahame at ...307... Sat Nov 22 02:40:46 2003 From: grahame at ...307... (Grahame White) Date: Sat, 22 Nov 2003 01:40:46 +0000 Subject: [Gambas-user] Problem compiling 0.72 with debian unstable In-Reply-To: <200311201914.57652.olinux@...289...> References: <200311201914.57652.olinux@...289...> Message-ID: <200311220140.46072.grahame@...307...> I downloaded the 0.72 source, untarred and did a ./configure which produced the following creating cache ./config.cache checking whether to enable maintainer-specific portions of Makefiles... no checking for a BSD compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal-1.4... found checking for working autoconf... found checking for working automake-1.4... found checking for working autoheader... found checking for working makeinfo... found checking host system type... i686-pc-linux-gnu checking for gcc... gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking how to run the C preprocessor... gcc -E checking for c++... c++ checking whether the C++ compiler (c++ ) works... yes checking whether the C++ compiler (c++ ) is a cross-compiler... no checking whether we are using GNU C++... yes checking whether c++ accepts -g... yes checking for a BSD compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets ${MAKE}... (cached) yes checking for dirent.h that defines DIR... yes checking for opendir in -ldir... no checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for fcntl.h... yes checking for malloc.h... yes checking for strings.h... yes checking for sys/time.h... yes checking for unistd.h... yes checking for working const... yes checking for pid_t... yes checking for size_t... yes checking whether time.h and sys/time.h may both be included... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for working alloca.h... yes checking for alloca... yes checking return type of signal handlers... void checking for working strcoll... yes checking for strftime... yes checking for vprintf... yes checking for wait3 that fills in rusage... yes checking for getcwd... yes checking for gettimeofday... yes checking for mkdir... yes checking for rmdir... yes checking for select... yes checking for strdup... yes checking for strerror... yes checking for strtod... yes checking for strtol... yes checking for setenv... yes checking for unsetenv... yes checking for Cygwin environment... no checking for mingw32 environment... no checking build system type... i686-pc-linux-gnu checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking how to recognise dependant libraries... pass_all checking for object suffix... o checking for executable suffix... no checking command to parse /usr/bin/nm -B output... ok checking for dlfcn.h... yes checking for ranlib... ranlib checking for strip... strip checking for objdir... .libs checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.lo... yes checking if gcc supports -fno-rtti -fno-exceptions... yes checking whether the linker (/usr/bin/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... GNU/Linux ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... no checking for dlopen in -ldl... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether -lc should be explicitly linked in... no creating libtool checking for main in -lm... yes checking for main in -lz... yes checking for main in -lgcc_s... yes checking for main in -lstdc++... yes checking which extension is used for shared libraries... .so checking for threading compiler options... checking for threading linker options... -lpthread checking for internationalization headers... /usr/include/ checking for internationalization libraries... no configure: warning: *** internationalization is disabled checking for charset conversion headers... /usr/include/ checking for charset conversion libraries... no configure: warning: *** charset conversion is disabled checking for QT component headers... /usr/include/qt3/ checking for QT component libraries... /usr/lib/ checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for XOpenDisplay in -lX11... yes checking for XShmAttach in -lXext... yes checking for QT meta-object compiler... /usr/lib//../bin/moc checking for KDE 3.x component headers... /usr/include/kde/ checking for KDE 3.x component libraries... /usr/lib/ checking for Networking component headers... checking for Networking component libraries... checking for PostgreSQL driver headers... no checking for PostgreSQL driver libraries... no configure: warning: *** PostgreSQL driver is disabled checking for MySQL driver headers... no checking for MySQL driver libraries... no configure: warning: *** MySQL driver is disabled checking for SDL component headers... /usr/include/SDL/ checking for SDL component libraries... /usr/lib/ updating cache ./config.cache creating ./config.status creating Makefile creating src/Makefile creating src/share/Makefile creating src/comp/Makefile creating src/exec/Makefile creating src/lib/Makefile creating src/lib/eval/Makefile creating src/lib/example/Makefile creating src/lib/qt/Makefile creating src/lib/qt/editor/Makefile creating src/lib/qt/ext/Makefile creating src/lib/qt/kde/Makefile creating src/lib/db/Makefile creating src/lib/db/mysql/Makefile creating src/lib/db/postgresql/Makefile creating src/lib/sdl/Makefile creating src/lib/net/Makefile creating config.h configuring in libltdl running /bin/sh ./configure --enable-ltdl-convenience --cache-file=.././ config.cache --srcdir=. loading cache .././config.cache checking for a BSD compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking whether make sets ${MAKE}... (cached) yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... (cached) gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for working const... (cached) yes checking for inline... inline checking for Cygwin environment... (cached) no checking for mingw32 environment... (cached) no checking how to run the C preprocessor... (cached) gcc -E checking host system type... i686-pc-linux-gnu checking build system type... i686-pc-linux-gnu checking for ld used by GCC... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for /usr/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking whether ln -s works... (cached) yes checking how to recognise dependant libraries... (cached) pass_all checking for object suffix... (cached) o checking for executable suffix... (cached) no checking command to parse /usr/bin/nm -B output... (cached) ok checking for dlfcn.h... (cached) yes checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking for objdir... .libs checking for gcc option to produce PIC... (cached) -fPIC checking if gcc PIC flag -fPIC 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.lo... (cached) yes checking if gcc supports -fno-rtti -fno-exceptions... yes checking whether the linker (/usr/bin/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... GNU/Linux ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking whether -lc should be explicitly linked in... (cached) no creating libtool checking for ANSI C header files... (cached) yes checking for dirent.h that defines DIR... (cached) yes checking for opendir in -ldir... (cached) no checking whether gcc supports assert without backlinking... checking which extension is used for shared libraries... .so checking which variable specifies run-time library path... LD_LIBRARY_PATH checking for the default library search path... /lib /usr/lib checking for objdir... .libs checking whether libtool supports -dlopen/-dlpreopen... yes checking for dlopen in -ldl... (cached) yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dld_link in -ldld... no checking for dlerror... yes checking for _ prefix in compiled symbols... no checking whether deplibs are loaded by dlopen... yes checking for argz.h... yes checking for error_t... yes checking for argz_append... yes checking for argz_create_sep... yes checking for argz_insert... yes checking for argz_next... yes checking for argz_stringify... yes checking for errno.h... yes checking for malloc.h... (cached) yes checking for memory.h... yes checking for stdlib.h... yes checking for stdio.h... yes checking for ctype.h... yes checking for unistd.h... (cached) yes checking for dl.h... no checking for sys/dl.h... no checking for dld.h... no checking for string.h... yes checking for strchr... yes checking for strrchr... yes checking for memcpy... yes checking for memmove... yes checking for strcmp... yes updating cache .././config.cache creating ./config.status creating Makefile creating config.h Which, to me, aside from a few minor points, looks fine I then proceeded to do a make, which also seemed to be going fine until the following error c++ -DHAVE_CONFIG_H -I. -I. -I../../.. -I/usr/include/qt3/ -I../../../src/ share -g -O2 -pipe -Wall -fno-exceptions -g -O0 -c main.cpp -fPIC -DPIC -o main.lo In file included from CWindow.h:37, from main.cpp:56: CContainer.h:28:22: qobjcoll.h: No such file or directory In file included from CWindow.h:38, from main.cpp:56: CMenu.h:32:19: qlist.h: No such file or directory In file included from main.cpp:76: CTabStrip.h:34:21: qvector.h: No such file or directory make[5]: *** [main.lo] Error 1 make[5]: Leaving directory `/home/grahame/gambas-0.72/src/lib/qt' make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory `/home/grahame/gambas-0.72/src/lib/qt' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/grahame/gambas-0.72/src/lib' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/grahame/gambas-0.72/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/grahame/gambas-0.72' make: *** [all-recursive-am] Error 2 I'm using : gcc 3.3.2 automake 1.4 autoconf 2.58 From olinux at ...289... Sat Nov 22 11:37:07 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 22 Nov 2003 11:37:07 +0100 Subject: [Gambas-user] maybe a bug in menu editor Message-ID: <200311221137.07838.olinux@...289...> gambas 0.72 / 0.71 if menu name is "tititi toto" then compilation generate an error "class toto not exist" space are not supported here regards Olivier From gambas at ...1... Sat Nov 22 15:24:25 2003 From: gambas at ...1... (Benoit Minisini) Date: Sat, 22 Nov 2003 15:24:25 +0100 Subject: [Gambas-user] maybe a bug in menu editor In-Reply-To: <200311221137.07838.olinux@...289...> References: <200311221137.07838.olinux@...289...> Message-ID: <200311221524.25540.gambas@...1...> Le Samedi 22 Novembre 2003 11:37, Olivier Coquet a ?crit : > gambas 0.72 / 0.71 > > if menu name is "tititi toto" then compilation generate an error "class > toto not exist" > > space are not supported here > > > regards > Olivier > > OK. There is the same problem in control names and groups, and all will be fixed in the next version ! Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Sat Nov 22 16:01:28 2003 From: gambas at ...1... (Benoit Minisini) Date: Sat, 22 Nov 2003 16:01:28 +0100 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311220014.48638.leo.barnhoorn@...246...> References: <200311201416.16048.gambas@...1...> <200311220014.48638.leo.barnhoorn@...246...> Message-ID: <200311221601.28704.gambas@...1...> Le Samedi 22 Novembre 2003 09:14, Leo Barnhoorn a ?crit : > Hallo Benoit, > > ./configure OK. > make OK. > make install OK. > > On SuSE Linux version 8.2 > > I have one problem, i do not know what it is but it is not working anymore. > This is the problem: > > FOR EACH hWin IN wrkBase.Children > INC iInd > hMenu = NEW Menu(mnuWindow) AS "mnuOneWindow" > hMenu.Text = "&" & CStr(iInd) & " " & hWin.Text > hMenu.Checked = hWin = wrkBase.ActiveWindow > hMenu.Tag = hWin > NEXT > > PUBLIC SUB mnuOneWindow_Click() > Here is the problem. It will not show my Window anymore. > LAST.Tag.Show > END > > If you want to see what i mean, the same problem you will find in the > Database Manager. Open some tabels and then by menuoption Window show the > open tabels in the windows. Here it is not working. > > I hoop this makes sence. > > Thanks Benoit. > > Regards, > Leo Barnhoorn. > Hi, Leo. By fixing a bug, I added a new one ! Here is patched file that should solve the problem. Tell me, because I didn't take the time to test it. Regards, -- Benoit Minisini mailto:gambas at ...1... -------------- next part -------------- A non-text attachment was scrubbed... Name: CWindow.cpp Type: text/x-c++src Size: 29538 bytes Desc: not available URL: From sourceforge-raindog2 at ...94... Sat Nov 22 18:09:30 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Sat, 22 Nov 2003 12:09:30 -0500 Subject: [Gambas-user] gambas 0.72 mandrake packages Message-ID: <200311221209.30080.sourceforge-raindog2@...94...> http://www.kudla.org/index.php?wl_mode=more&wl_eid=40 Packages are up for 9.2 and 9.1. Please let me know in the next couple days whether these work or not (they're working for me naturally) because I plan on submitting them to Mandrake contrib again. Rob From olinux at ...289... Sat Nov 22 18:50:50 2003 From: olinux at ...289... (Olivier Coquet) Date: Sat, 22 Nov 2003 18:50:50 +0100 Subject: [Gambas-user] Stratoria 0.0.40 available Message-ID: <200311221850.50359.olinux@...289...> Stratoria (Gestion Commerciale sous Gambas) is available for download - best societe management - some bug are out - some code simplified - Gestion des independants & gestion des clients are presents but not actives (look actualite for precisions) Download Here (source & exec) http://stratoria.dynu.net:85/ Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ From gambas at ...1... Sat Nov 22 19:59:25 2003 From: gambas at ...1... (Benoit Minisini) Date: Sat, 22 Nov 2003 19:59:25 +0100 Subject: [Gambas-user] IDE 0.72 and gambas 0.72 In-Reply-To: <200311210033.51194.Karl.Reinl@...9...> References: <200311210033.51194.Karl.Reinl@...9...> Message-ID: <200311221959.25792.gambas@...1...> Le Vendredi 21 Novembre 2003 00:33, Charlie Reinl a ?crit : > Salut, > > first: on gentoo 1.4 (most from package) the 3 run well. > > seconde: IDE crash if you chose an empty folder after 'new project' or > 'open project' and you make a right mouseclick , on the right empty gambas > fileselector windos. > > Error : Not an opject > > amicalement > Charlie > > OK. This is fixed. You will get it in the next version. Regards, -- Benoit Minisini mailto:gambas at ...1... From leo.barnhoorn at ...246... Sun Nov 23 06:58:36 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sat, 22 Nov 2003 21:58:36 -0800 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311221601.28704.gambas@...1...> References: <200311201416.16048.gambas@...1...> <200311220014.48638.leo.barnhoorn@...246...> <200311221601.28704.gambas@...1...> Message-ID: <200311222158.36742.leo.barnhoorn@...246...> Hallo Benoit, Sorry it is not working. But when i print the information from the object LAST.Tag it gives this: (FConsole 0x8111300) (FConsole 0x815f238) It will still not show the window when i selected by the Menu option Window on the mainmenu. PUBLIC SUB mnuOneWindow_Click() Here is the problem. It will not show my Window anymore. LAST.Tag.Show END Regards, Leo Barnhoorn. On Saturday 22 November 2003 07:01, Benoit Minisini wrote: > Le Samedi 22 Novembre 2003 09:14, Leo Barnhoorn a ?crit : > > Hallo Benoit, > > > > ./configure OK. > > make OK. > > make install OK. > > > > On SuSE Linux version 8.2 > > > > I have one problem, i do not know what it is but it is not working > > anymore. This is the problem: > > > > FOR EACH hWin IN wrkBase.Children > > INC iInd > > hMenu = NEW Menu(mnuWindow) AS "mnuOneWindow" > > hMenu.Text = "&" & CStr(iInd) & " " & hWin.Text > > hMenu.Checked = hWin = wrkBase.ActiveWindow > > hMenu.Tag = hWin > > NEXT > > > > PUBLIC SUB mnuOneWindow_Click() > > Here is the problem. It will not show my Window anymore. > > LAST.Tag.Show > > END > > > > If you want to see what i mean, the same problem you will find in the > > Database Manager. Open some tabels and then by menuoption Window show the > > open tabels in the windows. Here it is not working. > > > > I hoop this makes sence. > > > > Thanks Benoit. > > > > Regards, > > Leo Barnhoorn. > > Hi, Leo. > > By fixing a bug, I added a new one ! Here is patched file that should solve > the problem. Tell me, because I didn't take the time to test it. > > Regards, From Karl.Reinl at ...9... Sat Nov 22 22:22:20 2003 From: Karl.Reinl at ...9... (Charlie Reinl) Date: Sat, 22 Nov 2003 22:22:20 +0100 Subject: [Gambas-user] PB with examples Message-ID: <200311222222.20621.Karl.Reinl@...9...> Salut, /opt/gambas/share/examples is still owned by root:root . most examples run ( 'drwxr-xr-x') , but all network parts are 'drwxr--r--' so if you try to load them, the IDE crash without any message ( if you are not root) If you start gambas from a konsole you get Project.ReadProject.990: #43: Access forbidden Thats right, but not good. And it would be nice to have message from The IDE. The IDE also crash if you try to open (after 'Open a Project') the /opt/gambas/share/examples Folder. I think /opt/gambas/share/examples should have 'drwxrwxrwx' Amicalement Charlie From gambas at ...1... Sat Nov 22 22:33:37 2003 From: gambas at ...1... (Benoit Minisini) Date: Sat, 22 Nov 2003 22:33:37 +0100 Subject: [Gambas-user] PB with examples In-Reply-To: <200311222222.20621.Karl.Reinl@...9...> References: <200311222222.20621.Karl.Reinl@...9...> Message-ID: <200311222233.37728.gambas@...1...> Le Samedi 22 Novembre 2003 22:22, Charlie Reinl a ?crit : > Salut, > > /opt/gambas/share/examples is still owned by root:root . > > most examples run ( 'drwxr-xr-x') , > but all network parts are 'drwxr--r--' > so if you try to load them, the IDE crash without any message ( if you are > not root) > If you start gambas from a konsole you get > > Project.ReadProject.990: #43: Access forbidden > > Thats right, but not good. > And it would be nice to have message from The IDE. > > The IDE also crash if you try to open (after 'Open a Project') the > /opt/gambas/share/examples Folder. > > I think /opt/gambas/share/examples should have 'drwxrwxrwx' > > Amicalement > Charlie > Guten tag, I will fix the example folder rights, and will add a error handler to ReadProject. The examples will have 'drwxr-xr-x' => if you want to modify them, you must copy them in your home directory. Regards, -- Benoit Minisini mailto:gambas at ...1... From Gambasfr at ...11... Sat Nov 22 22:54:20 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Sat, 22 Nov 2003 21:54:20 +0000 Subject: [Gambas-user] Lectures in marketing In-Reply-To: <3FBC711E.1000908@...200...> References: <200311181212.29983.sourceforge-raindog2@...94...> <200311191248.50357.sourceforge-raindog2@...94...> <3FBC711E.1000908@...200...> Message-ID: <200311222154.20428.Gambasfr@...11...> Hi I'm near to finish read my received email ... ouff ! (91) Lot of thing append in one sole week ! Same idea, about marketing... My english is not really good for this time, but i've writed lot and more news, in french develloppers forum. I think most of them wait, for the 1.0 version before adopt the project. There are too many project who stop before a real stable version ! Gambas compiler, interpreter and standart libs must to grown suffisaly slowly to stay stable most of the time. Here there is not money ideas not marketing precept, just good product. Fabien Hem !!! Was i clear ? From Gambasfr at ...11... Sat Nov 22 23:03:53 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Sat, 22 Nov 2003 22:03:53 +0000 Subject: [Gambas-user] IDE 0.72 and gambas 0.72 In-Reply-To: <200311221959.25792.gambas@...1...> References: <200311210033.51194.Karl.Reinl@...9...> <200311221959.25792.gambas@...1...> Message-ID: <200311222203.53536.Gambasfr@...11...> Le Samedi 22 Novembre 2003 18:59, Benoit Minisini a ?crit : > Le Vendredi 21 Novembre 2003 00:33, Charlie Reinl a ?crit : > > Salut, > > > > first: on gentoo 1.4 (most from package) the 3 run well. > > > > seconde: IDE crash if you chose an empty folder after 'new project' or > > 'open project' and you make a right mouseclick , on the right empty > > gambas fileselector windos. > > > > Error : Not an opject > > > > amicalement > > Charlie > > OK. This is fixed. You will get it in the next version. > > Regards, J'ai manqu? un ?pisode ? exusez-moi le boulot Fabien From Gambasfr at ...11... Sat Nov 22 23:47:25 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Sat, 22 Nov 2003 22:47:25 +0000 Subject: [Gambas-user] form control need help pleas... In-Reply-To: <200311151746.32196.olinux@...289...> References: <200311150852.58935.olinux@...289...> <200311151121.40689.gambas@...1...> <200311151746.32196.olinux@...289...> Message-ID: <200311222247.25726.Gambasfr@...11...> Le Samedi 15 Novembre 2003 16:46, Olivier Coquet a ?crit : > > This is by design. Contrary to VB, form controls are not public, because > > the less public variables you have in a class, the better is your > > program. > > > > You should really read carefully all the gambas documentation, especially > > the "Differences from VB" page if you plan to make a big program. > > > > If yo don't want to hurt your VB-infected mind :-), there is a project > > option name "all form controls are public". If you check it, your program > > will behave like you wanted. > > I'm consterned by my stupidity....... > > This afternoon, I go to buy some tobaco (erggggg english is not so easy for > me ! ) and in remember this 'little' detail.....sorry to vast your time. > > > But I suggest you keeping controls private, and improve your program > > design. > > > > For example, if your class C has a method that modifies the form F1, you > > should better put this method directly in F1. This is a general > > object-oriented programming practice. Don't think that F1 is only a form. > > It is a class too. It is a class that can display a form too. You don't > > need to separate the class part of F1 and keep in it only the GUI related > > methods. Am I clear ? > > Hummm yes but in middle of my 1487 lines of code i begin to loose me..... > > > Many gambas designs try to prevent the horrible design I am compelled to > > do when I program in VB. I don't know if it will be a success, but please > > help me by trying to forgot how you programmed in VB ! > > what is vb??????? > > :=) > : > > Regards, > > > > -- > > Benoit Minisini > > mailto:gambas at ...1... > > > > ----[ FRENCH VERSION / VERSION FRAN?AISE ]---- > > > > Tout est normal. Gambas a ?t? con?u ainsi. Contrairement ? VB, les > > controles des formulaires ne sont pas publics, car moins il y a de > > variables publiques dans une classe, et mieux c'est. > > > > Tu devrais lire s?rieusement la documentation de Gambas, et surtout ce > > qui concerne les diff?rences entre VB et Gambas, si tu comptes faire un > > gros programme. > > > > Si tu ne veux pas chambouler ton esprit infect? par VB :-), il y a une > > option de projet qui permet de rendre les contr?les des formulaires > > publics. Si tu la coches, ton programme se comportera comme tu le veux. > > CF: voir au dessus, c'est malin si j'avais su que c'etait en fran?ais plus > bas, me serait pas fait ch........ (<=== only pure French can understand > this, don't try other) > > > Mais je te sugg?re de garder tes contr?les priv?s, et d'am?liorer la > > conception de ton programme. > > Et allez donc..... comme tu y vas > > > Par exemple, si ta classe C a une m?thode qui modifie le formulaire F1, > > il vaut mieux mettre cette m?thode directement dans F1. C'est un principe > > de base en programmation orient?-objet. Ne vois pas seulement F1 comme un > > formulaire. C'est aussi une classe. C'est une classe qui peut aussi > > afficher un formulaire. Il n'est pas n?cessaire de s?pararer de F1 les > > m?thodes de classe pour n'y conserver que les m?thodes relatives ? > > l'interface utilisateur. Est-ce que je suis clair ? > > heuuu ben voui m'sieur mais au dela de 1400 lignes de code, ca devient pas > d'une clart? limpide pour on esprit fraichement linuxis?.... > > > Beaucoup d'?l?ments de conception de Gambas tentent d'emp?cher les > > horribles choses que l'on est oblig? de faire lorsqu'on programme en VB. > > Je ne sais pas si ?a marchera, mais, s'il-vous-plait, aidez-moi en > > essayant d'oublier comment vous programmiez en VB ! > > > > Amicalement, > > idem > va jetter un oeil sur le site stratoria, ca devrait te convaincre qu'on > peut faire des trucs sympas avec gambas meme quand on sort de VB :=)))))) Po un peu frustr? Olivier la? (je teste strato) PS: compte le nombre de ligne dans l'IDE j'ai po eu le temp lol Fabien > amiti? > Olivier Coquet > Strat&Co > http://stratoria.dynu.net:85/ > > > > ------------------------------------------------------- > This SF. Net email is sponsored by: GoToMyPC > GoToMyPC is the fast, easy and secure way to access your computer from > any Web browser or wireless device. Click here to Try it Free! > https://www.gotomypc.com/tr/OSDN/AW/Q4_2003/t/g22lp?Target=mm/g22lp.tmpl > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From na2492 at ...9... Sat Nov 22 23:13:51 2003 From: na2492 at ...9... (na2492 at ...9...) Date: Sat, 22 Nov 2003 23:13:51 00100 Subject: [Gambas-user] PB with examples Message-ID: <3fbfdf9f.3f7.0@...9...> >Le Samedi 22 Novembre 2003 22:22, Charlie Reinl a ?crit : >> Salut, >> >> /opt/gambas/share/examples is still owned by root:root . >> >> most examples run ( 'drwxr-xr-x') , >> but all network parts are 'drwxr--r--' >> so if you try to load them, the IDE crash without any message ( if you are >> not root) >> If you start gambas from a konsole you get >> >> Project.ReadProject.990: #43: Access forbidden >> >> Thats right, but not good. >> And it would be nice to have message from The IDE. >> >> The IDE also crash if you try to open (after 'Open a Project') the >> /opt/gambas/share/examples Folder. >> >> I think /opt/gambas/share/examples should have 'drwxrwxrwx' >> >> Amicalement >> Charlie >> > >Guten tag, > >I will fix the example folder rights, and will add a error handler to >ReadProject. The examples will have 'drwxr-xr-x' => if you want to modify >them, you must copy them in your home directory. > >Regards, > No I dont think to copy them is a good solution,( I dit it too often befor ) I know to work with chown, its just to get a 'easy to use and bug free gambas' Charlie >-- >Benoit Minisini >mailto:gambas at ...1... > > > >------------------------------------------------------- >This SF.net email is sponsored by: SF.net Giveback Program. >Does SourceForge.net help you be more productive? Does it >help you create better code? SHARE THE LOVE, and help us help >YOU! Click Here: http://sourceforge.net/donate/ >_______________________________________________ >Gambas-user mailing list >Gambas-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/gambas-user > > * Gesendet mit / Sent by: FEN-Webmail * http://www.fen-net.de * From gambas at ...1... Sun Nov 23 00:48:25 2003 From: gambas at ...1... (Benoit Minisini) Date: Sun, 23 Nov 2003 00:48:25 +0100 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311222158.36742.leo.barnhoorn@...246...> References: <200311201416.16048.gambas@...1...> <200311221601.28704.gambas@...1...> <200311222158.36742.leo.barnhoorn@...246...> Message-ID: <200311230048.25870.gambas@...1...> Le Dimanche 23 Novembre 2003 06:58, Leo Barnhoorn a ?crit : > Hallo Benoit, > > Sorry it is not working. > > But when i print the information from the object LAST.Tag it gives this: > (FConsole 0x8111300) > (FConsole 0x815f238) > It will still not show the window when i selected by the Menu option Window > on the mainmenu. > > PUBLIC SUB mnuOneWindow_Click() > Here is the problem. It will not show my Window anymore. > LAST.Tag.Show > END > > Regards, > Leo Barnhoorn. > At least I succeed in fixing that. It seems that the behavior of QT has changed, as I have to call another function to active MDI child windows. This toolkit is not annoying: at each version, there is something important that break compatibility silently! :-p Here is the patch... -- Benoit Minisini mailto:gambas at ...1... -------------- next part -------------- A non-text attachment was scrubbed... Name: CWindow.cpp Type: text/x-c++src Size: 29648 bytes Desc: not available URL: From leo.barnhoorn at ...246... Sun Nov 23 11:24:41 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sun, 23 Nov 2003 02:24:41 -0800 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311230048.25870.gambas@...1...> References: <200311201416.16048.gambas@...1...> <200311222158.36742.leo.barnhoorn@...246...> <200311230048.25870.gambas@...1...> Message-ID: <200311230224.41314.leo.barnhoorn@...246...> Hallo Benoit, Yes you succeed in fixing it. It is working. Thanks Benoit Regards, Leo Barnhoorn. On Saturday 22 November 2003 15:48, Benoit Minisini wrote: > Le Dimanche 23 Novembre 2003 06:58, Leo Barnhoorn a ?crit : > > Hallo Benoit, > > > > Sorry it is not working. > > > > But when i print the information from the object LAST.Tag it gives this: > > (FConsole 0x8111300) > > (FConsole 0x815f238) > > It will still not show the window when i selected by the Menu option > > Window on the mainmenu. > > > > PUBLIC SUB mnuOneWindow_Click() > > Here is the problem. It will not show my Window anymore. > > LAST.Tag.Show > > END > > > > Regards, > > Leo Barnhoorn. > > At least I succeed in fixing that. It seems that the behavior of QT has > changed, as I have to call another function to active MDI child windows. > > This toolkit is not annoying: at each version, there is something important > that break compatibility silently! :-p > > Here is the patch... From olinux at ...289... Sun Nov 23 08:41:41 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 23 Nov 2003 08:41:41 +0100 Subject: [Gambas-user] ug on button picture Message-ID: <200311230841.41511.olinux@...289...> GAMBAS 0.72 FEDORA CORE 1 GNOME 2.4.0 open a new form in ide put on a button go to picture propertie click on picture all crash ! Regards Olivier From olinux at ...289... Sun Nov 23 08:43:19 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 23 Nov 2003 08:43:19 +0100 Subject: [Gambas-user] general bug on picture propertie Message-ID: <200311230843.19965.olinux@...289...> imposible to put a picture in the picture propertie box of anny control, click on select picture button crash ide regards olivier From girardhenri at ...67... Sun Nov 23 09:44:45 2003 From: girardhenri at ...67... (Henri Girard) Date: Sun, 23 Nov 2003 09:44:45 +0100 Subject: [Gambas-user] gambas 0.72 mandrake packages References: <200311221209.30080.sourceforge-raindog2@...94...> Message-ID: I have compiled on m9.2... it works fine... Is there a need to test yours ? I don't mind except if I risk to fail on my mysql stuff... I have been fixing it for few days.. and had to reinstalled linux many times... So i stopped fedora because I hadn't mysql 4.0xxx working on it and I got m9.2 in a magazine where the cdroms are better than mine (except the second one)... KG Henri ----- Original Message ----- From: "Rob" To: Sent: Saturday, November 22, 2003 6:09 PM Subject: [Gambas-user] gambas 0.72 mandrake packages > http://www.kudla.org/index.php?wl_mode=more&wl_eid=40 > > Packages are up for 9.2 and 9.1. > > Please let me know in the next couple days whether these work or > not (they're working for me naturally) because I plan on > submitting them to Mandrake contrib again. > > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From olinux at ...289... Sun Nov 23 09:49:44 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 23 Nov 2003 09:49:44 +0100 Subject: [Gambas-user] severe bug in ide !!!!!! Message-ID: <200311230949.44848.olinux@...289...> sorry to be insistant but i think picture property bug is very important, all controls pictures property fields are in read only mode in property panel and a click on the button near picture property crash the ide. Gambas 0.72 Regards Olivier From olinux at ...289... Sun Nov 23 11:14:56 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 23 Nov 2003 11:14:56 +0100 Subject: [Gambas-user] Button and foreground color Message-ID: <200311231114.56710.olinux@...289...> Hi, why foreground colors are nor applicated to buttons ?????? Regards Olivier From gambas at ...1... Sun Nov 23 11:48:36 2003 From: gambas at ...1... (Benoit Minisini) Date: Sun, 23 Nov 2003 11:48:36 +0100 Subject: [Gambas-user] ug on button picture In-Reply-To: <200311230841.41511.olinux@...289...> References: <200311230841.41511.olinux@...289...> Message-ID: <200311231148.36359.gambas@...1...> On Sunday 23 November 2003 08:41, Olivier Coquet wrote: > GAMBAS 0.72 > > FEDORA CORE 1 > GNOME 2.4.0 > > open a new form in ide > put on a button > go to picture propertie > > click on picture > > all crash ! > > Regards > Olivier > Such a report is useless, Olivier ! Launch the IDE from a terminal, and tell me if there is a Gambas error message or a signal like 'segmentation fault'. Regards, -- Benoit Minisini mailto:gambas at ...1... From Gambasfr at ...11... Sun Nov 23 13:05:48 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Sun, 23 Nov 2003 12:05:48 +0000 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311222158.36742.leo.barnhoorn@...246...> References: <200311201416.16048.gambas@...1...> <200311221601.28704.gambas@...1...> <200311222158.36742.leo.barnhoorn@...246...> Message-ID: <200311231205.48567.Gambasfr@...11...> Le Dimanche 23 Novembre 2003 05:58, Leo Barnhoorn a ?crit : > Hallo Benoit, > > Sorry it is not working. > > But when i print the information from the object LAST.Tag it gives this: > (FConsole 0x8111300) > (FConsole 0x815f238) > It will still not show the window when i selected by the Menu option Window > on the mainmenu. > > PUBLIC SUB mnuOneWindow_Click() > Here is the problem. It will not show my Window anymore. > LAST.Tag.Show > END hi I've found !!! Change LAST.Tag.Show by LAST.Tag.SetFocus Fabien > Regards, > Leo Barnhoorn. > > On Saturday 22 November 2003 07:01, Benoit Minisini wrote: > > Le Samedi 22 Novembre 2003 09:14, Leo Barnhoorn a ?crit : > > > Hallo Benoit, > > > > > > ./configure OK. > > > make OK. > > > make install OK. > > > > > > On SuSE Linux version 8.2 > > > > > > I have one problem, i do not know what it is but it is not working > > > anymore. This is the problem: > > > > > > FOR EACH hWin IN wrkBase.Children > > > INC iInd > > > hMenu = NEW Menu(mnuWindow) AS "mnuOneWindow" > > > hMenu.Text = "&" & CStr(iInd) & " " & hWin.Text > > > hMenu.Checked = hWin = wrkBase.ActiveWindow > > > hMenu.Tag = hWin > > > NEXT > > > > > > PUBLIC SUB mnuOneWindow_Click() > > > Here is the problem. It will not show my Window anymore. > > > LAST.Tag.Show > > > END > > > > > > If you want to see what i mean, the same problem you will find in the > > > Database Manager. Open some tabels and then by menuoption Window show > > > the open tabels in the windows. Here it is not working. > > > > > > I hoop this makes sence. > > > > > > Thanks Benoit. > > > > > > Regards, > > > Leo Barnhoorn. > > > > Hi, Leo. > > > > By fixing a bug, I added a new one ! Here is patched file that should > > solve the problem. Tell me, because I didn't take the time to test it. > > > > Regards, > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From olinux at ...289... Sun Nov 23 12:26:42 2003 From: olinux at ...289... (Olivier Coquet) Date: Sun, 23 Nov 2003 12:26:42 +0100 Subject: [Gambas-user] ug on button picture In-Reply-To: <200311231148.36359.gambas@...1...> References: <200311230841.41511.olinux@...289...> <200311231148.36359.gambas@...1...> Message-ID: <200311231226.42158.olinux@...289...> I've gone in the gambas ide source code and have found than picture text box is set to readonly=true, have changed this and now i can put a picture name (manualy) and it's work but bouton alway generate a complete crash. I launch gambas from terminal, create a form with picture and click on "picture" button property, here is the returned message from gambas just before it crash: [olinux at ...293... olinux]$ gambas FSupSelector.?.0: #6: Type mismatch: wanted Integer, got Null instead [olinux at ...293... olinux]$ Hope than this help you.... What about Button Foreground property????? PS: I'll try to transform stratoria http site in an "sourceforge" for gambas progammers applications and friend of me try to redact a french helper more explicative than the existing gambas help... I tel you more about this in a few days. Regards Olivier Coquet Strat&Co http://stratoria.dynu.net:85/ Le Dimanche 23 Novembre 2003 11:48, Benoit Minisini a ?crit : > On Sunday 23 November 2003 08:41, Olivier Coquet wrote: > > GAMBAS 0.72 > > > > FEDORA CORE 1 > > GNOME 2.4.0 > > > > open a new form in ide > > put on a button > > go to picture propertie > > > > click on picture > > > > all crash ! > > > > Regards > > Olivier > > Such a report is useless, Olivier ! > > Launch the IDE from a terminal, and tell me if there is a Gambas error > message or a signal like 'segmentation fault'. > > Regards, From leo.barnhoorn at ...246... Sun Nov 23 23:36:06 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sun, 23 Nov 2003 14:36:06 -0800 Subject: [Gambas-user] gambas 0.72 In-Reply-To: <200311231205.48567.Gambasfr@...11...> References: <200311201416.16048.gambas@...1...> <200311222158.36742.leo.barnhoorn@...246...> <200311231205.48567.Gambasfr@...11...> Message-ID: <200311231436.06255.leo.barnhoorn@...246...> Hallo Fabien, Thanks for your information about this problem. Benoit allready fixed the problem by sending a patch. Thanks for your time to help. Regards, Leo Barnhoorn. On Sunday 23 November 2003 04:05, Fabien Bodard wrote: > Le Dimanche 23 Novembre 2003 05:58, Leo Barnhoorn a ?crit : > > Hallo Benoit, > > > > Sorry it is not working. > > > > But when i print the information from the object LAST.Tag it gives this: > > (FConsole 0x8111300) > > (FConsole 0x815f238) > > It will still not show the window when i selected by the Menu option > > Window on the mainmenu. > > > > PUBLIC SUB mnuOneWindow_Click() > > Here is the problem. It will not show my Window anymore. > > LAST.Tag.Show > > END > > hi > > I've found !!! Change > LAST.Tag.Show > > by > > LAST.Tag.SetFocus > > Fabien > > > Regards, > > Leo Barnhoorn. > > > > On Saturday 22 November 2003 07:01, Benoit Minisini wrote: > > > Le Samedi 22 Novembre 2003 09:14, Leo Barnhoorn a ?crit : > > > > Hallo Benoit, > > > > > > > > ./configure OK. > > > > make OK. > > > > make install OK. > > > > > > > > On SuSE Linux version 8.2 > > > > > > > > I have one problem, i do not know what it is but it is not working > > > > anymore. This is the problem: > > > > > > > > FOR EACH hWin IN wrkBase.Children > > > > INC iInd > > > > hMenu = NEW Menu(mnuWindow) AS "mnuOneWindow" > > > > hMenu.Text = "&" & CStr(iInd) & " " & hWin.Text > > > > hMenu.Checked = hWin = wrkBase.ActiveWindow > > > > hMenu.Tag = hWin > > > > NEXT > > > > > > > > PUBLIC SUB mnuOneWindow_Click() > > > > Here is the problem. It will not show my Window anymore. > > > > LAST.Tag.Show > > > > END > > > > > > > > If you want to see what i mean, the same problem you will find in the > > > > Database Manager. Open some tabels and then by menuoption Window show > > > > the open tabels in the windows. Here it is not working. > > > > > > > > I hoop this makes sence. > > > > > > > > Thanks Benoit. > > > > > > > > Regards, > > > > Leo Barnhoorn. > > > > > > Hi, Leo. > > > > > > By fixing a bug, I added a new one ! Here is patched file that should > > > solve the problem. Tell me, because I didn't take the time to test it. > > > > > > Regards, > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > Does SourceForge.net help you be more productive? Does it > > help you create better code? SHARE THE LOVE, and help us help > > YOU! Click Here: http://sourceforge.net/donate/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From leo.barnhoorn at ...246... Mon Nov 24 08:34:52 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sun, 23 Nov 2003 23:34:52 -0800 Subject: [Gambas-user] Function Timer and Object Timer. Message-ID: <200311232334.52965.leo.barnhoorn@...246...> Hallo Benoit, I want to make a Object Timer in a Class like this hTimer = NEW Timer ( [ Parent AS Container ] ) but this is not posible, the Function Timer() interverse. When i put this in the editor : hTimer = NEW Timer() the Editor makes the text Timer() Yellow, so it is seen as a statement part of the Gambas language and that is TRUE. How can i make in a Class the object Timer. Thanks. Regards, Leo Barnhoorn. From schrockk at ...137... Mon Nov 24 01:53:03 2003 From: schrockk at ...137... (Ken Schrock) Date: Sun, 23 Nov 2003 19:53:03 -0500 Subject: [Gambas-user] Term Window Message-ID: <3FC1566F.7030202@...137...> How do I stop this from popping up when I use the SHELL command? I have tried adding & to the command line and with or without WAIT Still I get the ugly window that doesn't go away when completed. From danielcampos at ...282... Mon Nov 24 09:30:55 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Mon, 24 Nov 2003 09:30:55 CET Subject: [Gambas-user] About Net documentation Message-ID: Hi Rob (and company): I've been looking the new documentation (in progress), and I tried to begin to add documentation about "Net" component, however I don't know how could I add new files or links between them. Editing "ArticleNetwork" was easy for me, but here it is more complex, and I'd didn't like to destroy all Wiki structure with a silly action :) Could you help me? Thanks, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From sourceforge-raindog2 at ...94... Mon Nov 24 13:29:40 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Mon, 24 Nov 2003 07:29:40 -0500 Subject: [Gambas-user] About Net documentation In-Reply-To: References: Message-ID: <200311240729.40635.sourceforge-raindog2@...94...> On Monday 24 November 2003 07:30, danielcampos at ...282... wrote: > I've been looking the new documentation (in progress), and I > tried to begin to add documentation about "Net" component, > however I don't know how could I add new files or links > between them. > > Editing "ArticleNetwork" was easy for me, but here it is more > complex, and I'd didn't like to destroy all Wiki structure > with a silly action :) My most recent export program will create nodes for any component classes that don't have them. I'll try to update that to gambas 0.72 this morning and then you can just edit the pages :) If you wanted to actually create them, you should look at the wiki code for other class members (which basically just pulls in an export file if it exists, and then has a space for examples and further documentation) and name your stuff like this: GambasComponentNetSomeClass for SomeClass GambasComponentNetSomeClassMember for a method or property named Member GambasComponentNetSomeClassEventMember for an event named Member GambasComponentNetSomeClassConstantMember for a constant named Member But I'd seriously suggest letting my export handle the initial structure and just adding your stuff from there :) I know this defeats the purpose of a wiki for a huge chunk of Gambas documentation (specifically the components) but at this point with the combination of manually edited and automatically generated docs on the same page, we're using the wiki software for purposes far, far beyond those for which it was designed ;) Rob From sourceforge-raindog2 at ...94... Mon Nov 24 14:07:18 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Mon, 24 Nov 2003 08:07:18 -0500 Subject: [Gambas-user] About Net documentation In-Reply-To: <200311240729.40635.sourceforge-raindog2@...94...> References: <200311240729.40635.sourceforge-raindog2@...94...> Message-ID: <200311240807.18425.sourceforge-raindog2@...94...> On Monday 24 November 2003 07:29, Rob wrote: > My most recent export program will create nodes for any > component classes that don't have them. I'll try to update > that to gambas 0.72 this morning and then you can just edit > the pages :) OK, I updated the component docs on the wiki to 0.72 and the net component is included. Please let me know if there are any problems with it, other than the ones Benoit has already asked me to fix for the next version ;) Rob From gambas at ...1... Sun Nov 23 11:52:54 2003 From: gambas at ...1... (Benoit Minisini) Date: Sun, 23 Nov 2003 11:52:54 +0100 Subject: [Gambas-user] severe bug in ide !!!!!! In-Reply-To: <200311230949.44848.olinux@...289...> References: <200311230949.44848.olinux@...289...> Message-ID: <200311231152.54377.gambas@...1...> On Sunday 23 November 2003 09:49, Olivier Coquet wrote: > sorry to be insistant but i think picture property bug is very important, > all controls pictures property fields are in read only mode in property > panel and a click on the button near picture property crash the ide. > > Gambas 0.72 > > Regards > Olivier > > Mrf... It works fine on my machine. I must leave and will be back Monday. If you can, grant me an access on your Linux box with telnet or ssh. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Mon Nov 24 14:12:40 2003 From: gambas at ...1... (Benoit Minisini) Date: Mon, 24 Nov 2003 14:12:40 +0100 Subject: [Gambas-user] Term Window In-Reply-To: <3FC1566F.7030202@...137...> References: <3FC1566F.7030202@...137...> Message-ID: <200311241412.40583.gambas@...1...> On Monday 24 November 2003 01:53, Ken Schrock wrote: > How do I stop this from popping up when I use the SHELL command? > I have tried adding & to the command line and with or without WAIT > Still I get the ugly window that doesn't go away when completed. > > > What are you talking about ? -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Mon Nov 24 14:14:05 2003 From: gambas at ...1... (Benoit Minisini) Date: Mon, 24 Nov 2003 14:14:05 +0100 Subject: [Gambas-user] Function Timer and Object Timer. In-Reply-To: <200311232334.52965.leo.barnhoorn@...246...> References: <200311232334.52965.leo.barnhoorn@...246...> Message-ID: <200311241414.05876.gambas@...1...> On Monday 24 November 2003 08:34, Leo Barnhoorn wrote: > Hallo Benoit, > > I want to make a Object Timer in a Class like this > > hTimer = NEW Timer ( [ Parent AS Container ] ) > > but this is not posible, the Function Timer() interverse. > > When i put this in the editor : hTimer = NEW Timer() the Editor makes the > text Timer() Yellow, so it is seen as a statement part of the Gambas > language and that is TRUE. > > How can i make in a Class the object Timer. > > Thanks. > > Regards, > Leo Barnhoorn. > The compiler don't care the text color, so just do it. The editor syntax colorizer is not very clever yet. -- Benoit Minisini mailto:gambas at ...1... From olinux at ...289... Mon Nov 24 15:12:14 2003 From: olinux at ...289... (Olivier Coquet) Date: Mon, 24 Nov 2003 15:12:14 +0100 Subject: [Gambas-user] severe bug in ide !!!!!! In-Reply-To: <200311231152.54377.gambas@...1...> References: <200311230949.44848.olinux@...289...> <200311231152.54377.gambas@...1...> Message-ID: it is not possible than it's come from my machine, because i'have seen the bug with source code modification, Picture texbox become available (I've changed the Enabled property of this textbox to TRUE) I've not spent more time to search the raison of the crash when i click on the button but i've put the terminal error message gived by gambas before it crash, look on ML messages i've posted before this. Regards Olivier -----Original Message----- From: Benoit Minisini To: gambas-user at lists.sourceforge.net Date: Sun, 23 Nov 2003 11:52:54 +0100 Subject: Re: [Gambas-user] severe bug in ide !!!!!! > On Sunday 23 November 2003 09:49, Olivier Coquet wrote: > > sorry to be insistant but i think picture property bug is very > important, > > all controls pictures property fields are in read only mode in > property > > panel and a click on the button near picture property crash the ide. > > > > Gambas 0.72 > > > > Regards > > Olivier > > > > > > Mrf... It works fine on my machine. > > I must leave and will be back Monday. If you can, grant me an access on > your > Linux box with telnet or ssh. > > Regards, > > -- > Benoit Minisini > mailto:gambas at ...1... > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From danielcampos at ...277... Mon Nov 24 20:15:56 2003 From: danielcampos at ...277... (daniel) Date: Mon, 24 Nov 2003 19:15:56 +0000 Subject: [Gambas-user] About Net documentation In-Reply-To: <200311240807.18425.sourceforge-raindog2@...94...> References: <200311240729.40635.sourceforge-raindog2@...94...> <200311240807.18425.sourceforge-raindog2@...94...> Message-ID: <1069701356.2242.3.camel@...278...> El lun, 24-11-2003 a las 13:07, Rob escribi?: > On Monday 24 November 2003 07:29, Rob wrote: > > My most recent export program will create nodes for any > > component classes that don't have them. I'll try to update > > that to gambas 0.72 this morning and then you can just edit > > the pages :) > > OK, I updated the component docs on the wiki to 0.72 and the net > component is included. Please let me know if there are any > problems with it, other than the ones Benoit has already asked > me to fix for the next version ;) > Hi, Rob: Thanks for your help. If you have time, please look at DnsClient and ServerSocket classes. I added documentation, however I would like to know it is well done. However, there was a strange problem, each time I modified for the first time a part of the documentation, it changed "owner" to DanielCampos, but all the changes I wrote were lost, however, the second time it worked fine. I had to do that in all places I wanted to add new documentation, and it was hard... Regards, Daniel Campos > Rob > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From sourceforge-raindog2 at ...94... Mon Nov 24 19:23:57 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Mon, 24 Nov 2003 13:23:57 -0500 Subject: [Gambas-user] About Net documentation In-Reply-To: <1069701356.2242.3.camel@...278...> References: <200311240807.18425.sourceforge-raindog2@...94...> <1069701356.2242.3.camel@...278...> Message-ID: <200311241323.57571.sourceforge-raindog2@...94...> On Monday 24 November 2003 14:15, daniel wrote: > However, there was a strange problem, each time I modified > for the first time a part of the documentation, it changed > "owner" to DanielCampos, but all the changes I wrote were > lost, however, the second time it worked fine. I had to do > that in all places I wanted to add new documentation, and it > was hard... Sorry, that's an artifact of when I create new pages in the wiki. They don't get version files attached to them (the wiki uses RCS to track changes) and so the first time they get "checked in" i.e. saved, it takes the existing version as 1.0, makes a version file, and then apparently disregards the changes. Normally it only affects the *Export pages which you're not supposed to edit, but in this case since all those new classes and symbols got added their container pages got created too. I haven't figured out how to write a valid RCS file yet but we should be good until the next time something people edit gets overwritten or another new component is added. Rob From kschrock at ...149... Mon Nov 24 20:03:07 2003 From: kschrock at ...149... (Ken Schrock) Date: Mon, 24 Nov 2003 14:03:07 -0500 Subject: [Gambas-user] Term Window In-Reply-To: <200311241412.40583.gambas@...1...> References: <3FC1566F.7030202@...137...> <200311241412.40583.gambas@...1...> Message-ID: <3FC255EB.70009@...149...> When I do SHELL command I get a console\xterm type window that pops up Not only is it ugly, it remains after the command is complete I would rather it didn't do this Benoit Minisini wrote: >On Monday 24 November 2003 01:53, Ken Schrock wrote: > > >>How do I stop this from popping up when I use the SHELL command? >>I have tried adding & to the command line and with or without WAIT >>Still I get the ugly window that doesn't go away when completed. >> >> >> >> >> > >What are you talking about ? > > > From sourceforge-raindog2 at ...94... Mon Nov 24 21:03:01 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Mon, 24 Nov 2003 15:03:01 -0500 Subject: [Gambas-user] Term Window In-Reply-To: <3FC255EB.70009@...149...> References: <3FC1566F.7030202@...137...> <200311241412.40583.gambas@...1...> <3FC255EB.70009@...149...> Message-ID: <200311241503.01523.sourceforge-raindog2@...94...> On Monday 24 November 2003 14:03, Ken Schrock wrote: > When I do > SHELL command > I get a console\xterm type window that pops up > Not only is it ugly, it remains after the command is complete > I would rather it didn't do this It should only do that when running a project in the IDE. A compiled program shouldn't do this (it should just write its standard error output to the console from which it was run) so I'm interested in hearing which case applies to your situation. Rob From danielcampos at ...282... Tue Nov 25 10:37:46 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Tue, 25 Nov 2003 10:37:46 CET Subject: [Gambas-user] Net documentation (in progress) Message-ID: Hi all! I'm placing "Net" documentation at gambas wiki, at this moment Socket,ServerSocket, and DnsClient are documented, and the rest of classes are being worked: http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentNet You have also the first part of a brief tutorial at: http://www.binara.com/gambas-wiki/bin/view/Gambas/ArticleNetworkComponent Regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From nferraz at ...184... Tue Nov 25 12:40:10 2003 From: nferraz at ...184... (Nelson Ferraz) Date: Tue, 25 Nov 2003 09:40:10 -0200 Subject: [Gambas-user] Lectures in marketing In-Reply-To: <200311222154.20428.Gambasfr@...11...> References: <200311181212.29983.sourceforge-raindog2@...94...> <200311191248.50357.sourceforge-raindog2@...94...> <3FBC711E.1000908@...200...> <200311222154.20428.Gambasfr@...11...> Message-ID: <3FC33F9A.60202@...184...> I preffer to use the word "communication" instead of "marketing". If we want to get the word out, all we have to do is to write to local news papers, computer magazines, etc. Many journalists will think that Gambas is interesting enought to deserve a note. On the other hand, the simple fact that we talk to our friends about Gambas will bring new developers to the project. -- []s Nelson ________________________________________________________________ Nelson Ferraz GNU BIS: http://www.gnubis.com.br PhPerl: http://www.phperl.com From kschrock at ...149... Tue Nov 25 15:09:17 2003 From: kschrock at ...149... (Ken Schrock) Date: Tue, 25 Nov 2003 09:09:17 -0500 Subject: [Gambas-user] Term Window In-Reply-To: <200311241503.01523.sourceforge-raindog2@...94...> References: <3FC1566F.7030202@...137...> <200311241412.40583.gambas@...1...> <3FC255EB.70009@...149...> <200311241503.01523.sourceforge-raindog2@...94...> Message-ID: <3FC3628D.8000908@...149...> You are quite right, I tried it Run that way there is no separate console Thanks I hadn't done that since I am still working on the program Gambas apps won't launch from Kong Rob wrote: >On Monday 24 November 2003 14:03, Ken Schrock wrote: > > >>When I do >>SHELL command >>I get a console\xterm type window that pops up >>Not only is it ugly, it remains after the command is complete >>I would rather it didn't do this >> >> > >It should only do that when running a project in the IDE. A >compiled program shouldn't do this (it should just write its >standard error output to the console from which it was run) so >I'm interested in hearing which case applies to your situation. > >Rob > > > >------------------------------------------------------- >This SF.net email is sponsored by: SF.net Giveback Program. >Does SourceForge.net help you be more productive? Does it >help you create better code? SHARE THE LOVE, and help us help >YOU! Click Here: http://sourceforge.net/donate/ >_______________________________________________ >Gambas-user mailing list >Gambas-user at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/gambas-user > > > From girardhenri at ...67... Tue Nov 25 16:17:28 2003 From: girardhenri at ...67... (Henri Girard) Date: Tue, 25 Nov 2003 16:17:28 +0100 Subject: [Gambas-user] pic probs Message-ID: Hello :) I have the same problem as Olivier : If I want to insert a picture in a menu for example gambas crashes when I click on "open" I don't know what to do : distro is m9.2 KG Henri -------------- next part -------------- An HTML attachment was scrubbed... URL: From sourceforge-raindog2 at ...94... Tue Nov 25 16:37:54 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Tue, 25 Nov 2003 10:37:54 -0500 Subject: [Gambas-user] pic probs In-Reply-To: References: Message-ID: <200311251037.54092.sourceforge-raindog2@...94...> On Tuesday 25 November 2003 10:17, Henri Girard wrote: > I have the same problem as Olivier : If I want to insert a > picture in a menu for example gambas crashes when I click on > "open" I don't know what to do : distro is m9.2 Same here, also under 9.2 (whether using my packages or built straight from the tarball.) It happens under 9.1 as well. Same with the icon dialog. Error (on the parent console) is: FSupSelector.?.0: #6: Type mismatch: wanted Integer, got Null instead Rob From danielcampos at ...282... Tue Nov 25 18:09:38 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Tue, 25 Nov 2003 18:09:38 CET Subject: [Gambas-user] Net documentation Message-ID: Well, all my "net" component documentation has been translated to Gambas Wiki,so... start using it now! :-) http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentNet Best regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From olinux at ...289... Tue Nov 25 19:31:17 2003 From: olinux at ...289... (Olivier Coquet) Date: Tue, 25 Nov 2003 19:31:17 +0100 Subject: [Gambas-user] pic probs In-Reply-To: <200311251037.54092.sourceforge-raindog2@...94...> References: <200311251037.54092.sourceforge-raindog2@...94...> Message-ID: <200311251931.17271.olinux@...289...> Ouffffff i'm not alone :=) For people who understand the gambas ide source, i think the bug is relatively simple to remove (it is in the module FProperty) but for instance, put your image name in the source of form with gedit, the compiler accept this. regards Olivier Le Mardi 25 Novembre 2003 16:37, Rob a ?crit : > On Tuesday 25 November 2003 10:17, Henri Girard wrote: > > I have the same problem as Olivier : If I want to insert a > > picture in a menu for example gambas crashes when I click on > > "open" I don't know what to do : distro is m9.2 > > Same here, also under 9.2 (whether using my packages or built > straight from the tarball.) It happens under 9.1 as well. Same > with the icon dialog. Error (on the parent console) is: > > FSupSelector.?.0: #6: Type mismatch: wanted Integer, got Null > instead > > Rob From Gambasfr at ...11... Tue Nov 25 21:10:53 2003 From: Gambasfr at ...11... (Fabien Bodard) Date: Tue, 25 Nov 2003 20:10:53 +0000 Subject: [Gambas-user] pic probs In-Reply-To: <200311251931.17271.olinux@...289...> References: <200311251037.54092.sourceforge-raindog2@...94...> <200311251931.17271.olinux@...289...> Message-ID: <200311252010.54153.Gambasfr@...11...> Le Mardi 25 Novembre 2003 18:31, Olivier Coquet a ?crit : > Ouffffff i'm not alone :=) > > For people who understand the gambas ide source, i think the bug is > relatively simple to remove (it is in the module FProperty) but for > instance, put your image name in the source of form with gedit, the > compiler accept this. > > regards > Olivier > > Le Mardi 25 Novembre 2003 16:37, Rob a ?crit : > > On Tuesday 25 November 2003 10:17, Henri Girard wrote: > > > I have the same problem as Olivier : If I want to insert a > > > picture in a menu for example gambas crashes when I click on > > > "open" I don't know what to do : distro is m9.2 > > > > Same here, also under 9.2 (whether using my packages or built > > straight from the tarball.) It happens under 9.1 as well. Same > > with the icon dialog. Error (on the parent console) is: > > > > FSupSelector.?.0: #6: Type mismatch: wanted Integer, got Null > > instead > > > > Rob > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user I'm sorry but i can't resolve this bug... The reason is simple i've not mdk 9.2 actually... Fabien Mabe you can temporary resolve this problem by delete the .gambas directory in your home directory. From gambas at ...1... Tue Nov 25 20:13:11 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 25 Nov 2003 20:13:11 +0100 Subject: [Gambas-user] pic probs In-Reply-To: References: Message-ID: <200311252013.11051.gambas@...1...> On Tuesday 25 November 2003 16:17, Henri Girard wrote: > Hello :) > > I have the same problem as Olivier : If I want to insert a picture in a > menu for example gambas crashes when I click on "open" I don't know what to > do : distro is m9.2 > KG > Henri Maybe it is a bug in the file selector. Could you try to remove ~/.gambas/gambas.conf (you will lost all your IDE configuration !) and retry ? -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Nov 25 20:16:50 2003 From: gambas at ...1... (Benoit Minisini) Date: Tue, 25 Nov 2003 20:16:50 +0100 Subject: [Gambas-user] pic probs In-Reply-To: <200311252010.54153.Gambasfr@...11...> References: <200311251931.17271.olinux@...289...> <200311252010.54153.Gambasfr@...11...> Message-ID: <200311252016.50681.gambas@...1...> On Tuesday 25 November 2003 21:10, Fabien Bodard wrote: > > I'm sorry but i can't resolve this bug... The reason is simple i've not mdk > 9.2 actually... > > Fabien > > Mabe you can temporary resolve this problem by delete the .gambas directory > in your home directory. > > I think the problem comes from the fact that I fixed the inequality comparison operators, and that you use Val() without consideration. In Gambas, Val() returns NULL and not 0 if it cannot convert a string to a number or a date. So maybe you must check the Val() instruction in your code. A quick and dirty hack is writing a MyVal() function that returns 0 like the VB one. Regards, -- Benoit Minisini mailto:gambas at ...1... From danielcampos at ...277... Tue Nov 25 21:34:37 2003 From: danielcampos at ...277... (daniel) Date: Tue, 25 Nov 2003 20:34:37 +0000 Subject: [Gambas-user] pic probs In-Reply-To: <200311252010.54153.Gambasfr@...11...> References: <200311251037.54092.sourceforge-raindog2@...94...> <200311251931.17271.olinux@...289...> <200311252010.54153.Gambasfr@...11...> Message-ID: <1069792476.2243.4.camel@...278...> > > > I'm sorry but i can't resolve this bug... The reason is simple i've not mdk > 9.2 actually... > > Fabien > > Mabe you can temporary resolve this problem by delete the .gambas directory in > your home directory. > I'm using Mandrake 9.1 and this problem also appears on my box. I've run "Gambas" on "Gambas", and "$path" variable at file selector takes strange values when selecting files placed at my home root. It appears an error saying "File does not exists", but it is not true... Regards, Daniel Campos > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From leo.barnhoorn at ...246... Wed Nov 26 07:04:20 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Tue, 25 Nov 2003 22:04:20 -0800 Subject: [Gambas-user] Multidimensional Array Message-ID: <200311252204.20347.leo.barnhoorn@...246...> Hallo Benoit, Can you tell me how i can declare a multidimentional array inside the object data to make the array global. I really do not know how to that. Thanks Regards, Leo Barnhoorn From leo.barnhoorn at ...246... Wed Nov 26 09:40:41 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Wed, 26 Nov 2003 00:40:41 -0800 Subject: [Gambas-user] Multidimensional Array In-Reply-To: <200311252204.20347.leo.barnhoorn@...246...> References: <200311252204.20347.leo.barnhoorn@...246...> Message-ID: <200311260040.41519.leo.barnhoorn@...246...> Hallo, I have allready found it. Thanks anyway. Step by step i am beginning to understand it. Regards, Leo Barnhoorn. On Tuesday 25 November 2003 22:04, Leo Barnhoorn wrote: > Hallo Benoit, > > Can you tell me how i can declare a multidimentional array inside the > object data to make the array global. I really do not know how to that. > > Thanks > > Regards, > Leo Barnhoorn > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From olinux at ...289... Wed Nov 26 08:17:04 2003 From: olinux at ...289... (Olivier Coquet) Date: Wed, 26 Nov 2003 08:17:04 +0100 Subject: [Gambas-user] pic prob, not a val() prob!!! Message-ID: <200311260817.05064.olinux@...289...> line 418 of FProperty class: CASE "Font", "Picture" bButton = TRUE txtProperty.ReadOnly = TRUE <==== this say than if picture property then texbox is readonly !!! change this to true and textbox can be modified without error. I search in code for the button crash and say you when it's ok Regards Olivier From olinux at ...289... Wed Nov 26 08:29:57 2003 From: olinux at ...289... (Olivier Coquet) Date: Wed, 26 Nov 2003 08:29:57 +0100 Subject: [Gambas-user] pic prob, suite, temporary remede Message-ID: <200311260829.57727.olinux@...289...> line 844 of FPUSelector InitTree(Root,TreeSequence) <======= this generate the null error, replace with 0 and this work but now without the original path and tree, it's just a temprary remede. Regards Olivier From girardhenri at ...67... Wed Nov 26 09:17:06 2003 From: girardhenri at ...67... (Henri Girard) Date: Wed, 26 Nov 2003 09:17:06 +0100 Subject: [Gambas-user] Fw: QT 3.2.3 cygwin/XFree release available Message-ID: Hi Benoit transfering :) ----- Original Message ----- From: "Ralf Habacker" To: "Kde-Cygwin" Cc: "Cygwin-Xfree at ...310... Com" Sent: Tuesday, November 25, 2003 5:32 PM Subject: QT 3.2.3 cygwin/XFree release available > Hi all, > > today the cygwin/XFree port of the QT 3.2.3 X11 release based on the recent > cygwin release is ready containing binary and source package. > > For further informations about this release see > http://www.trolltech.com/newsroom/announcements/00000147.html > > For further informations about the cygwin/XFree port see > http://kde-cygwin.sf.net/qt3/ > > Download Resources > > - binary package > http://prdownloads.sourceforge.net/kde-cygwin/qt-3.2.3.tar.bz2?download > - source package > http://prdownloads.sourceforge.net/kde-cygwin/qt-3.2.3-src.tar.bz2?download > > Have fun > > The kde-cygwin team > > > _______________________________________________ > kde-cygwin mailing list > kde-cygwin at ...309... > https://mail.kde.org/mailman/listinfo/kde-cygwin > From girardhenri at ...67... Wed Nov 26 09:26:28 2003 From: girardhenri at ...67... (Henri Girard) Date: Wed, 26 Nov 2003 09:26:28 +0100 Subject: [Gambas-user] calc Message-ID: Hi :) I am really a nut in programming... I am making a small calc from vb and I can't find the way to write that in "gambas" option explicit DIM attente As variant private sub val1_click() if attente = 1 then valnum.text = vbnullstring attente = 0 End if valnum.text = valnum.text & "1" end sub Sorry to ask you but I am working on that for a certain time ! lol Kind regards Henri -------------- next part -------------- An HTML attachment was scrubbed... URL: From girardhenri at ...67... Wed Nov 26 12:14:53 2003 From: girardhenri at ...67... (Henri Girard) Date: Wed, 26 Nov 2003 12:14:53 +0100 Subject: [Gambas-user] calc References: Message-ID: i forgot ! can somebody tell me how to write it in gambas ? ----- Original Message ----- From: Henri Girard To: gambas-user at lists.sourceforge.net Sent: Wednesday, November 26, 2003 9:26 AM Subject: [Gambas-user] calc Hi :) I am really a nut in programming... I am making a small calc from vb and I can't find the way to write that in "gambas" option explicit DIM attente As variant private sub val1_click() if attente = 1 then valnum.text = vbnullstring attente = 0 End if valnum.text = valnum.text & "1" end sub Sorry to ask you but I am working on that for a certain time ! lol Kind regards Henri -------------- next part -------------- An HTML attachment was scrubbed... URL: From sourceforge-raindog2 at ...94... Wed Nov 26 16:37:23 2003 From: sourceforge-raindog2 at ...94... (Rob) Date: Wed, 26 Nov 2003 10:37:23 -0500 Subject: [Gambas-user] bug in gb.net.HttpClient.Get? Message-ID: <200311261037.23797.sourceforge-raindog2@...94...> I don't seem to be able to retrieve any HTTP documents that have query portions, e.g. http://www.kudla.org/index.php?wl_mode=more&wl_eid=40 The ? and = in the query get converted to %3f and %3d, which would be correct if they were part of a filename but when passed as query parameters they need to be intact. Weirdly, the underscores get converted to %3F (with an uppercase F) leading me to believe that two different routines are doing the conversion. Rob From amelgar at ...207... Wed Nov 26 15:55:41 2003 From: amelgar at ...207... (amelgar) Date: Wed, 26 Nov 2003 15:55:41 +0100 Subject: [Gambas-user] Net documentation (in progress) In-Reply-To: References: Message-ID: <3FC4BEED.9080604@...207...> danielcampos at ...282... wrote: >Hi all! > > I'm placing "Net" documentation at gambas wiki, at this moment >Socket,ServerSocket, and DnsClient are documented, and the rest >of classes are being worked: > >http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentNet > >You have also the first part of a brief tutorial at: > >http://www.binara.com/gambas-wiki/bin/view/Gambas/ArticleNetworkComponent > > >Regards, > >Daniel Campos > > > Very nice the brief tutorial for people like me who dont now to much about net programing. no la tendras en spanish por casualidad? :) saludos From christian.sahastume at ...11... Wed Nov 26 20:56:24 2003 From: christian.sahastume at ...11... (Christian Sahastume) Date: Wed, 26 Nov 2003 20:56:24 +0100 Subject: [Gambas-user] Gambas and database.... Message-ID: <200311262008.47877.christian.sahastume@...11...> Hello, It's the first time i post on this list. I'm french, so excuse me for my bad English...... I have a few questions about the database component before create an application with PostgreSQL. Example of a table: Name Type ------------------------ field0 serial (--> it will generate a sequence in database) field1 char(30) field2 char(30) field3 OID (Object IDentifier for Large Binary Object) OID is an integer which represent the link with the internal file postreSQL create in is directory. When i want to manage my database with gambas-database-manager, the field0 is transform into "int4" and field3" into "text". My questions: - Is gambas destroy my sequence and can't manage oid? - Is gambas can do this 2 examples ?: "INSERT INTO $database (field1, field2, field3) VALUES ( $text1, $text2, lo_import (img.jpeg'))" and do this?: "SELECT lo_export ($database.field3, '/tmp/img.jpeg') FROM $database where id= $Number" regards. Christian. From gambas at ...1... Wed Nov 26 22:57:10 2003 From: gambas at ...1... (Benoit Minisini) Date: Wed, 26 Nov 2003 22:57:10 +0100 Subject: [Gambas-user] pic prob, suite, temporary remede In-Reply-To: <200311260829.57727.olinux@...289...> References: <200311260829.57727.olinux@...289...> Message-ID: <200311262257.10715.gambas@...1...> On Wednesday 26 November 2003 08:29, Olivier Coquet wrote: > line 844 of FPUSelector > > InitTree(Root,TreeSequence) <======= this generate the null error, > replace with 0 and this work but now without the original path and tree, > it's just a temprary remede. > > Regards > Olivier > > Can you try with this patched FSupSelector.class file ? Copy this file in the IDE source code directory, redo a "make install", and tell me if it crashes yet. Thanks in advance, -- Benoit Minisini mailto:gambas at ...1... -------------- next part -------------- A non-text attachment was scrubbed... Name: FSupSelector.class Type: application/x-java Size: 34988 bytes Desc: not available URL: From danielcampos at ...277... Thu Nov 27 00:15:56 2003 From: danielcampos at ...277... (daniel) Date: Wed, 26 Nov 2003 23:15:56 +0000 Subject: [Gambas-user] Net documentation (in progress) In-Reply-To: <3FC4BEED.9080604@...207...> References: <3FC4BEED.9080604@...207...> Message-ID: <1069888555.2239.4.camel@...278...> El mi?, 26-11-2003 a las 14:55, amelgar escribi?: > danielcampos at ...282... wrote: > > >Hi all! > > > > I'm placing "Net" documentation at gambas wiki, at this moment > >Socket,ServerSocket, and DnsClient are documented, and the rest > >of classes are being worked: > > > >http://www.binara.com/gambas-wiki/bin/view/GambasTest/GambasComponentNet > > > >You have also the first part of a brief tutorial at: > > > >http://www.binara.com/gambas-wiki/bin/view/Gambas/ArticleNetworkComponent > > > > > >Regards, > > > >Daniel Campos > > > > > > > Very nice the brief tutorial for people like me who dont now to much > about net programing. > > no la tendras en spanish por casualidad? :) [es] Gracias y saludos. Desgraciadamente la tuve que hacer directamnete en ingl?s por la falta de tiempo, pero tratar? de "traducirla" dentro de poco :.) [en] thanks and regards. I'm sorry but I had to write in directly in english due to the lack of time, but i'll try to translate it in few time (.: <- english people drive by the left side of the road, so... > > saludos > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From danielcampos at ...277... Thu Nov 27 00:18:47 2003 From: danielcampos at ...277... (daniel) Date: Wed, 26 Nov 2003 23:18:47 +0000 Subject: [Gambas-user] bug in gb.net.HttpClient.Get? In-Reply-To: <200311261037.23797.sourceforge-raindog2@...94...> References: <200311261037.23797.sourceforge-raindog2@...94...> Message-ID: <1069888727.2328.6.camel@...278...> El mi?, 26-11-2003 a las 15:37, Rob escribi?: > I don't seem to be able to retrieve any HTTP documents that have > query portions, e.g. > > http://www.kudla.org/index.php?wl_mode=more&wl_eid=40 > > The ? and = in the query get converted to %3f and %3d, which > would be correct if they were part of a filename but when passed > as query parameters they need to be intact. Weirdly, the > underscores get converted to %3F (with an uppercase F) leading > me to believe that two different routines are doing the > conversion. > > Rob > Ooops! it is true, I didn't remember to check if there was parameters! I'll try to correct it soon Regards, Daniel Campos > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From olinux at ...289... Thu Nov 27 07:57:56 2003 From: olinux at ...289... (Olivier Coquet) Date: Thu, 27 Nov 2003 07:57:56 +0100 Subject: [Gambas-user] pic prob, suite, temporary remede In-Reply-To: <200311262257.10715.gambas@...1...> References: <200311260829.57727.olinux@...289...> <200311262257.10715.gambas@...1...> Message-ID: <200311270757.56051.olinux@...289...> Le Mercredi 26 Novembre 2003 22:57, Benoit Minisini a ?crit : > On Wednesday 26 November 2003 08:29, Olivier Coquet wrote: > > line 844 of FPUSelector > > > > InitTree(Root,TreeSequence) <======= this generate the null error, > > replace with 0 and this work but now without the original path and tree, > > it's just a temprary remede. > > > > Regards > > Olivier > > Can you try with this patched FSupSelector.class file ? Copy this file in > the IDE source code directory, redo a "make install", and tell me if it > crashes yet. > > Thanks in advance, Ok, this work correctly now thanks a lot Regards Olivier From danielcampos at ...282... Thu Nov 27 11:05:31 2003 From: danielcampos at ...282... (danielcampos at ...282...) Date: Thu, 27 Nov 2003 11:05:31 CET Subject: [Gambas-user] Net fixed Message-ID: Hi all : This is net component version 0.1.1: * Beno?t added a patch to allow it compile on Solaris; however compiling it on Linux failed with message 'stray '\240' in program', so I've removed that strange character (may be Solaris text editor did it?) * Rob found URL codification was not working, so pages with reserved characters could not be received at all. I had a terrible mistake, I took an old piece of code I've written a long time ago, but that codification was intended for WML, not for HTTP!. Now it has been fixed. Regards, Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) -------------- next part -------------- A non-text attachment was scrubbed... Name: net_0_1_1.tar.gz Type: application/x-gzip Size: 45897 bytes Desc: not available URL: From cbonnet at ...303... Fri Nov 28 12:54:18 2003 From: cbonnet at ...303... (Christophe BONNET) Date: Fri, 28 Nov 2003 12:54:18 +0100 Subject: [Gambas-user] Object Properties Message-ID: <3FC7376A.5030908@...303...> Hi everybody ! How can I get / set the properties off an object, for example : I want to loop with Application.* (means all the properties..) Where can I found more examples with Gambas, Staroria doesn't respond French Version : Comment puis je parcourir les propri?t?s d'une classe ou d'un objet surtout sur des objets "standards" comme Application.* Ou puis trouver des exemples avec gambas , startoria l'adresse ne repond pas . Thank You A+ chris From olivier at ...289... Fri Nov 28 18:39:12 2003 From: olivier at ...289... (Olivier Coquet) Date: Fri, 28 Nov 2003 18:39:12 +0100 Subject: [Gambas-user] Object Properties In-Reply-To: <3FC7376A.5030908@...303...> References: <3FC7376A.5030908@...303...> Message-ID: <200311281839.12650.olivier@...289...> Le Vendredi 28 Novembre 2003 12:54, Christophe BONNET a ?crit : > French Version : > > Comment puis je parcourir les propri?t?s d'une classe ou d'un objet > surtout sur des objets "standards" comme Application.* > > Ou puis trouver des exemples avec gambas , startoria l'adresse ne repond > pas . > > Thank You > A+ chris Ah bon et depuis quand???? il y a 5 min ca marchait???? http://stratoria.dynu.net:85/ essaye pour voir? Olivier From edward_cjhsu at ...253... Sat Nov 29 02:10:48 2003 From: edward_cjhsu at ...253... (Edward Hsu) Date: Fri, 28 Nov 2003 20:10:48 -0500 (EST) Subject: [Gambas-user] about process In-Reply-To: <20031107113004.1381.qmail@...254...> Message-ID: <20031129011048.99501.qmail@...270...> Dear Benoit, I wrote a front end for mplayer and it shows the current time of playing and total time for current song. It works fine on Gambas 0.70b, but doesn't work after that version because after 0.70b we cannot have EXEC["mplayer","-slave",$sPath] FOR READ WRITE AS $hProcess As we know that READ option should not be used. Without that option we cannot use Process_Read to read the current time and total time. I enclose my simple program for you to debug. The program is working fine for music only, the current time is not right for video yet. And You can click on the progress bar to move to any position of your song. Thanks, Edward ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca -------------- next part -------------- A non-text attachment was scrubbed... Name: Kplayer.class Type: application/x-java Size: 3849 bytes Desc: Kplayer.class URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: Kplayer.form URL: From gambas at ...1... Sat Nov 29 11:03:30 2003 From: gambas at ...1... (Benoit Minisini) Date: Sat, 29 Nov 2003 11:03:30 +0100 Subject: [Gambas-user] about process In-Reply-To: <20031129011048.99501.qmail@...270...> References: <20031129011048.99501.qmail@...270...> Message-ID: <200311291103.30168.gambas@...1...> On Saturday 29 November 2003 02:10, Edward Hsu wrote: > Dear Benoit, > > I wrote a front end for mplayer and it shows the > current time of playing and total time for current > song. It works fine on Gambas 0.70b, but doesn't work > after that version because after 0.70b we cannot have > > EXEC["mplayer","-slave",$sPath] FOR READ WRITE AS > $hProcess > > As we know that READ option should not be used. > Without that option we cannot use Process_Read to read > the current time and total time. I enclose my simple > program for you to debug. The program is working fine > for music only, the current time is not right for > video yet. And You can click on the progress bar to > move to any position of your song. > > Thanks, > > Edward > Hi, Edward Maybe you didn't understand the new EXEC behaviour well :-) You can do: EXEC["mplayer","-slave",$sPath] FOR READ WRITE AS $hProcess But then, you MUST read the process output in the Process_Read() event handler (that was Process_Write in Gambas 0.70b), otherwise the executed process will block. And you can must use stream functions on the process object to read and write data: PRINT, LINE INPUT, etc. In Gambas 0.70b, then process output was always read by the interpreter, and then dropped if there was no event handler. So you could use FOR READ without any problem. Now, you can't ! Rewrite your example, and I will test it, because I'm only working on the last Gambas version. Regards, -- Benoit Minisini mailto:gambas at ...1... From leo.barnhoorn at ...246... Sat Nov 29 22:38:17 2003 From: leo.barnhoorn at ...246... (Leo Barnhoorn) Date: Sat, 29 Nov 2003 13:38:17 -0800 Subject: [Gambas-user] Extended ASCII characters Message-ID: <200311291338.17786.leo.barnhoorn@...246...> Hallo All, Who knows a font that can show extended ascii characters, this are the characters above ascii code 127, i have looking for a font like terminal but i could not find it. Thanks Regards Leo Barnhoorn. From edward_cjhsu at ...253... Sat Nov 29 15:20:02 2003 From: edward_cjhsu at ...253... (Edward Hsu) Date: Sat, 29 Nov 2003 09:20:02 -0500 (EST) Subject: [Gambas-user] about process In-Reply-To: <200311291103.30168.gambas@...1...> Message-ID: <20031129142002.32812.qmail@...274...> Dear Benoit, Thanks for your reply. I am very confused. I wrote an e-mail asking about the example of movieplayer which did not work at all and you said 'the READ option should be taken away'. After I took it away, it works fine. I also found that you took it out in the example of movieplayer for Gambas 0.72. Now you said that EXEC ... for READ WRITE as $hProcess should work. I try the example of movieplayer with READ option again on Gambas 0.72, it still doesn't work. After I take READ option away, it works. Is there any bug in new EXEC for music? I found it works fine for others with READ option but it doesn't work for music with mplayer. Regards, Edward ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca From schrockk at ...137... Sat Nov 29 21:43:00 2003 From: schrockk at ...137... (Ken Schrock) Date: Sat, 29 Nov 2003 15:43:00 -0500 Subject: [Gambas-user] Event loop Message-ID: <3FC904D4.4000505@...137...> If my app is in a sub that takes a long time How do I release to allow the interface to update? (i.e. The current action is synchronous, the interface doesn't update until the sub is finished, even though it updates it) There was a DoEvents or some such in VB Sleep works in C in Linux How here? From danielcampos at ...277... Sun Nov 30 13:02:18 2003 From: danielcampos at ...277... (daniel) Date: Sun, 30 Nov 2003 12:02:18 +0000 Subject: [Gambas-user] Event loop In-Reply-To: <3FC904D4.4000505@...137...> References: <3FC904D4.4000505@...137...> Message-ID: <1070193738.2250.2.camel@...278...> El s?b, 29-11-2003 a las 20:43, Ken Schrock escribi?: > If my app is in a sub that takes a long time > How do I release to allow the interface to update? > (i.e. The current action is synchronous, the interface doesn't > update until the sub is finished, even though it updates it) > > There was a DoEvents or some such in VB > Sleep works in C in Linux > How here? > > Use Wait() method, you can specify a number as parameter, if you use Wait(0) it is the same as DoEvents in VB,but if you use a number greater than zero, is the number of seconds the program will pause (sleep), for instance Wait(0.001) sleeps a milisecond the process Regards, Daniel Campos > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user