From gambas at ...1... Sat May 3 23:06:56 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 3 May 2008 23:06:56 +0200 Subject: [Gambas-devel] MySQL class ready In-Reply-To: <135472.45069.qm@...584...> References: <135472.45069.qm@...584...> Message-ID: <200805032306.56850.gambas@...1...> On mercredi 23 avril 2008, David Villalobos Cambronero wrote: > Hi all > > I have finished all changes suggested by Benoit: > > 1- Now MySQL.class is part of DB and Connection class. > > 2- I removed the MySQL.Connection property, since the connection info can > be retrived from DB and Connection Clasess. > > 3- Added/Removed some properties and functions. > > 4- There is a new property called Confirm, that will ask the user to > execute or not the statement. > > 5- Translation updated (for spanish) :-) > > 6- Quoted some unquoted symbols. > > 7- I' made some new functions like Dumps, Load Data from files into tables, > and Views (at least in a simple way). Any idea for something that should be > present? > > 8- Bonit, I'll appreciate your comments. > > Best regards > > David > Hi, David. Your component has been imported in the subversion tree. Now you can work directly on it. It is now the Gambas part of the gb.db.mysql component, so it is located inside he gb.db.mysql/src directory. I quickly saw may problems in it yet: * _MySQL should be "Create Static". * If you have a "Create Static" class (for example _MySQL) that exists just for being the value of a property, you don't have to instanciate it each time you need it. Just return the static instance by using the class name. I have done the needed modifications in _MySQL so that you can see what I mean. You should do the same changes for the other classes. * Error messages do not end with a point, and should not be translatable. * You should read the documentation carefully before using a feature: Process_Error is not a event raised because there is an error in Gambas, but when a running process writes on its standard error output. * 'Length' in english, not 'Lenght'. Your error messages sometimes are not really in english too! * 'Charset' instead of 'CharSet'. * I use '$' for global variables only, to see immediately the difference with local variables. Maybe you should do the same, and not use this special character for both? That's all at the moment. :-) Regards, -- Benoit Minisini From david_villalobos_c at ...7... Mon May 5 14:27:38 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 5 May 2008 05:27:38 -0700 (PDT) Subject: [Gambas-devel] MySQL class ready Message-ID: <835142.87982.qm@...587...> Ok, I'll try to make the fixes today and upload them tomorow. And, I'll start to write some pages on the wiki, any suggestion? Regards David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Saturday, May 3, 2008 3:06:56 PM Subject: Re: [Gambas-devel] MySQL class ready On mercredi 23 avril 2008, David Villalobos Cambronero wrote: > Hi all > > I have finished all changes suggested by Benoit: > > 1- Now MySQL.class is part of DB and Connection class. > > 2- I removed the MySQL.Connection property, since the connection info can > be retrived from DB and Connection Clasess. > > 3- Added/Removed some properties and functions. > > 4- There is a new property called Confirm, that will ask the user to > execute or not the statement. > > 5- Translation updated (for spanish) :-) > > 6- Quoted some unquoted symbols. > > 7- I' made some new functions like Dumps, Load Data from files into tables, > and Views (at least in a simple way). Any idea for something that should be > present? > > 8- Bonit, I'll appreciate your comments. > > Best regards > > David > Hi, David. Your component has been imported in the subversion tree. Now you can work directly on it. It is now the Gambas part of the gb.db.mysql component, so it is located inside he gb.db.mysql/src directory. I quickly saw may problems in it yet: * _MySQL should be "Create Static". * If you have a "Create Static" class (for example _MySQL) that exists just for being the value of a property, you don't have to instanciate it each time you need it. Just return the static instance by using the class name. I have done the needed modifications in _MySQL so that you can see what I mean. You should do the same changes for the other classes. * Error messages do not end with a point, and should not be translatable. * You should read the documentation carefully before using a feature: Process_Error is not a event raised because there is an error in Gambas, but when a running process writes on its standard error output. * 'Length' in english, not 'Lenght'. Your error messages sometimes are not really in english too! * 'Charset' instead of 'CharSet'. * I use '$' for global variables only, to see immediately the difference with local variables. Maybe you should do the same, and not use this special character for both? That's all at the moment. :-) Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Mon May 5 18:47:33 2008 From: gambas at ...1... (Benoit Minisini) Date: Mon, 5 May 2008 18:47:33 +0200 Subject: [Gambas-devel] MySQL class ready In-Reply-To: <835142.87982.qm@...587...> References: <835142.87982.qm@...587...> Message-ID: <200805051847.33044.gambas@...1...> On lundi 5 mai 2008, David Villalobos Cambronero wrote: > Ok, I'll try to make the fixes today and upload them tomorow. > > And, I'll start to write some pages on the wiki, any suggestion? > > Regards > > David > Some pages about what? -- Benoit Minisini From david_villalobos_c at ...7... Mon May 5 19:16:39 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 5 May 2008 10:16:39 -0700 (PDT) Subject: [Gambas-devel] MySQL class ready Message-ID: <420303.75712.qm@...596...> about the component and how to use it, some examples etc... ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Monday, May 5, 2008 10:47:33 AM Subject: Re: [Gambas-devel] MySQL class ready On lundi 5 mai 2008, David Villalobos Cambronero wrote: > Ok, I'll try to make the fixes today and upload them tomorow. > > And, I'll start to write some pages on the wiki, any suggestion? > > Regards > > David > Some pages about what? -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Wed May 7 19:14:48 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 7 May 2008 10:14:48 -0700 (PDT) Subject: [Gambas-devel] ValueBox Error Message-ID: <896022.35889.qm@...582...> Got the following error on Gambas 3 svn 1358 and some before when using value box setted to Date: Null object, Stock._get.276: Cannot find: calendar. Attached an example. ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ -------------- next part -------------- A non-text attachment was scrubbed... Name: q-0.0.1.tar.gz Type: application/x-gzip Size: 7509 bytes Desc: not available URL: From david_villalobos_c at ...7... Wed May 7 19:17:24 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 7 May 2008 10:17:24 -0700 (PDT) Subject: [Gambas-devel] Translations for Gambas3 Message-ID: <598160.35945.qm@...582...> Hi all, I got a problem when trying to update a translation for the Gambas project, for example the IDE, the windows just doesn't open, but if I save the project in other path then I can. Does someone has the same bahavoir? Regards David ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Wed May 7 20:38:07 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 7 May 2008 20:38:07 +0200 Subject: [Gambas-devel] ValueBox Error In-Reply-To: <896022.35889.qm@...582...> References: <896022.35889.qm@...582...> Message-ID: <200805072038.07229.gambas@...1...> On mercredi 7 mai 2008, David Villalobos Cambronero wrote: > Got the following error on Gambas 3 svn 1358 and some before when using > value box setted to Date: > > Null object, Stock._get.276: Cannot find: calendar. > > Attached an example. > > The bug should be fixed in rev. 1361. Anyway, which desktop do you use? Which icon theme? -- Benoit Minisini From gambas at ...1... Wed May 7 20:38:44 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 7 May 2008 20:38:44 +0200 Subject: [Gambas-devel] Translations for Gambas3 In-Reply-To: <598160.35945.qm@...582...> References: <598160.35945.qm@...582...> Message-ID: <200805072038.44469.gambas@...1...> On mercredi 7 mai 2008, David Villalobos Cambronero wrote: > Hi all, > > I got a problem when trying to update a translation for the Gambas project, > for example the IDE, the windows just doesn't open, but if I save the > project in other path then I can. > > Does someone has the same bahavoir? > > Regards > > David > ??? Can you be more explicit? -- Benoit Minisini From david_villalobos_c at ...7... Thu May 8 14:09:44 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Thu, 8 May 2008 05:09:44 -0700 (PDT) Subject: [Gambas-devel] ValueBox Error Message-ID: <81856.98114.qm@...555...> Both KDE, but I haven't try svn 1361, I'll try and tell you... Regards David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Wednesday, May 7, 2008 12:38:07 PM Subject: Re: [Gambas-devel] ValueBox Error On mercredi 7 mai 2008, David Villalobos Cambronero wrote: > Got the following error on Gambas 3 svn 1358 and some before when using > value box setted to Date: > > Null object, Stock._get.276: Cannot find: calendar. > > Attached an example. > > The bug should be fixed in rev. 1361. Anyway, which desktop do you use? Which icon theme? -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Thu May 8 14:16:03 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Thu, 8 May 2008 05:16:03 -0700 (PDT) Subject: [Gambas-devel] Gambas on Mandriva 2008.1 64Bits Message-ID: <720033.69327.qm@...596...> Hi all, Does someone know if Gambas 3 can be compiled in Mandriva 2008.1 64 bits? Best Regards David ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Thu May 8 14:55:13 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 8 May 2008 14:55:13 +0200 Subject: [Gambas-devel] Gambas on Mandriva 2008.1 64Bits In-Reply-To: <720033.69327.qm@...596...> References: <720033.69327.qm@...596...> Message-ID: <200805081455.13814.gambas@...1...> On jeudi 8 mai 2008, David Villalobos Cambronero wrote: > Hi all, > > Does someone know if Gambas 3 can be compiled in Mandriva 2008.1 64 bits? > > Best Regards > > David > > Normally yes, but I never tried. -- Benoit Minisini From david_villalobos_c at ...7... Thu May 8 15:23:59 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Thu, 8 May 2008 06:23:59 -0700 (PDT) Subject: [Gambas-devel] Gambas on Mandriva 2008.1 64Bits Message-ID: <755380.29958.qm@...587...> Well I'll try and tell you :-) Regards David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Thursday, May 8, 2008 6:55:13 AM Subject: Re: [Gambas-devel] Gambas on Mandriva 2008.1 64Bits On jeudi 8 mai 2008, David Villalobos Cambronero wrote: > Hi all, > > Does someone know if Gambas 3 can be compiled in Mandriva 2008.1 64 bits? > > Best Regards > > David > > Normally yes, but I never tried. -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Thu May 8 15:31:13 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Thu, 8 May 2008 06:31:13 -0700 (PDT) Subject: [Gambas-devel] Documentation for gb.db.mysql Message-ID: <453344.33550.qm@...591...> Hi Benoit http://www.gambasdoc.org/help/comp has a secction called DataBase that has: gb.db and gb.db.form. Database gb.db Database access gb.db.form Data bound controls I want to write some documentation in the wiki for gb.db.mysql, should I add a gb.db.mysql link to this secction or use http://www.gambasdoc.org/help/comp/gb.db/db & http://www.gambasdoc.org/help/comp/gb.db/connection to write the docs? Regards David ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Thu May 8 15:41:07 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 8 May 2008 15:41:07 +0200 Subject: [Gambas-devel] Documentation for gb.db.mysql In-Reply-To: <453344.33550.qm@...591...> References: <453344.33550.qm@...591...> Message-ID: <200805081541.07455.gambas@...1...> On jeudi 8 mai 2008, David Villalobos Cambronero wrote: > Hi Benoit > > http://www.gambasdoc.org/help/comp has a secction called DataBase that has: > gb.db and gb.db.form. > > > Database > gb.db Database access > gb.db.form Data bound controls > > I want to write some documentation in the wiki for gb.db.mysql, should I > add a gb.db.mysql link to this secction or use > http://www.gambasdoc.org/help/comp/gb.db/db & > http://www.gambasdoc.org/help/comp/gb.db/connection to write the docs? > > Regards > > David > It is just a matter of adding a link to gb.db.mysql on the /comp page. I did it, so you just have to document what needs to be documented in /comp/gb.db.mysql. Don't forget to click on "-> 3.0", as gb.db.mysql only exists in 3.0 version! Regards, -- Benoit Minisini From david_villalobos_c at ...7... Thu May 8 16:41:32 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Thu, 8 May 2008 07:41:32 -0700 (PDT) Subject: [Gambas-devel] Documentation for gb.db.mysql Message-ID: <20766.603.qm@...555...> Oh, thanks a lot Regards David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Thursday, May 8, 2008 7:41:07 AM Subject: Re: [Gambas-devel] Documentation for gb.db.mysql On jeudi 8 mai 2008, David Villalobos Cambronero wrote: > Hi Benoit > > http://www.gambasdoc.org/help/comp has a secction called DataBase that has: > gb.db and gb.db.form. > > > Database > gb.db Database access > gb.db.form Data bound controls > > I want to write some documentation in the wiki for gb.db.mysql, should I > add a gb.db.mysql link to this secction or use > http://www.gambasdoc.org/help/comp/gb.db/db & > http://www.gambasdoc.org/help/comp/gb.db/connection to write the docs? > > Regards > > David > It is just a matter of adding a link to gb.db.mysql on the /comp page. I did it, so you just have to document what needs to be documented in /comp/gb.db.mysql. Don't forget to click on "-> 3.0", as gb.db.mysql only exists in 3.0 version! Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Thu May 8 16:44:33 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Thu, 8 May 2008 07:44:33 -0700 (PDT) Subject: [Gambas-devel] Documentation for gb.db.mysql Message-ID: <341777.97297.qm@...582...> Sorry, forgot to ask you.. Do you think is a good idea to make an example and add it to the Gambas 3 examples? David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Thursday, May 8, 2008 7:41:07 AM Subject: Re: [Gambas-devel] Documentation for gb.db.mysql On jeudi 8 mai 2008, David Villalobos Cambronero wrote: > Hi Benoit > > http://www.gambasdoc.org/help/comp has a secction called DataBase that has: > gb.db and gb.db.form. > > > Database > gb.db Database access > gb.db.form Data bound controls > > I want to write some documentation in the wiki for gb.db.mysql, should I > add a gb.db.mysql link to this secction or use > http://www.gambasdoc.org/help/comp/gb.db/db & > http://www.gambasdoc.org/help/comp/gb.db/connection to write the docs? > > Regards > > David > It is just a matter of adding a link to gb.db.mysql on the /comp page. I did it, so you just have to document what needs to be documented in /comp/gb.db.mysql. Don't forget to click on "-> 3.0", as gb.db.mysql only exists in 3.0 version! Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Fri May 9 15:21:39 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Fri, 9 May 2008 06:21:39 -0700 (PDT) Subject: [Gambas-devel] Images on wiki v3 Message-ID: <715777.31561.qm@...597...> Hi all Can I add an image to the gambasdoc.org but for Gambas 3? I just can do it for Gambas 2. Can someone confirm? Regards David ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Fri May 9 19:55:45 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 9 May 2008 19:55:45 +0200 Subject: [Gambas-devel] Images on wiki v3 In-Reply-To: <715777.31561.qm@...597...> References: <715777.31561.qm@...597...> Message-ID: <200805091955.45796.gambas@...1...> On vendredi 9 mai 2008, David Villalobos Cambronero wrote: > Hi all > > Can I add an image to the gambasdoc.org but for Gambas 3? I just can do it > for Gambas 2. > > Can someone confirm? > > Regards > > David > You don't need to do that: you just need to create a link on the image in the gambas 3 specific page, and not in the gambas 2 specific page. Regards, -- Benoit Minisini From david_villalobos_c at ...7... Sun May 11 03:29:59 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Sat, 10 May 2008 18:29:59 -0700 (PDT) Subject: [Gambas-devel] Translations for Gambas3 In-Reply-To: <200805072038.44469.gambas@...1...> Message-ID: <757078.63878.qm@...587...> Hi, OK here it is: Usually I try to find some new strings to be translated in the Gambas 3 IDE (../trunk/app/src/gambas3), the project opens OK but when I go to the menu: Project/Translate, to translate, the FTranslate form just doesn't open. In the status bar appears a message: ?compiling project gambas3...? and that's all. But if I save the Gambas 3 IDE in another place, for example my /home directory, then the FTranslate windows opens. The problem is that Translate Dialog doesn't appears when I'm working in the /src directory, but if I'm working in other one then the dialog appears. Here's why (I found the error, but no sure if it is mine): In the source directory (../trunk/app/src/gambas3) the file: ?.startup? file belongs to root, as well as the group, that's why ?If Project.Compile() Then Return (Fmain:614)? returns true and the FTranslate window never opens. And when I save the project in another place, the file: ?.startup? belongs to the current user, and then everything goes fine. Now I have tow problems: 1 Why this file belongs to root if I download the sources from svn repository as normal user? 2 I never see the error message: ?gbc: ERROR: Cannot create .startup file?. I'm supposed to see it just in debug mode or it should appear in the status bar? Can someone help please? Best regards... David --- Benoit Minisini wrote: > On mercredi 7 mai 2008, David Villalobos Cambronero > wrote: > > Hi all, > > > > I got a problem when trying to update a > translation for the Gambas project, > > for example the IDE, the windows just doesn't > open, but if I save the > > project in other path then I can. > > > > Does someone has the same bahavoir? > > > > Regards > > > > David > > > > ??? Can you be more explicit? > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 > JavaOne(SM) Conference > Don't miss this year's exciting event. There's still > time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Sun May 11 03:31:27 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Sat, 10 May 2008 18:31:27 -0700 (PDT) Subject: [Gambas-devel] ValueBox Error In-Reply-To: <81856.98114.qm@...555...> Message-ID: <985704.96983.qm@...584...> Hi, The ValueBox works correctly now. Regards David --- David Villalobos Cambronero wrote: > Both KDE, but I haven't try svn 1361, I'll try and > tell you... > > Regards > > David > > ----- Original Message ---- > From: Benoit Minisini > To: mailing list for gambas developers > > Sent: Wednesday, May 7, 2008 12:38:07 PM > Subject: Re: [Gambas-devel] ValueBox Error > > On mercredi 7 mai 2008, David Villalobos Cambronero > wrote: > > Got the following error on Gambas 3 svn 1358 and > some before when using > > value box setted to Date: > > > > Null object, Stock._get.276: Cannot find: > calendar. > > > > Attached an example. > > > > > > The bug should be fixed in rev. 1361. Anyway, which > desktop do you use? Which > icon theme? > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 > JavaOne(SM) Conference > Don't miss this year's exciting event. There's still > time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > > > > > ____________________________________________________________________________________ > Be a better friend, newshound, and > know-it-all with Yahoo! Mobile. Try it now. > http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 > JavaOne(SM) Conference > Don't miss this year's exciting event. There's still > time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Sun May 11 03:33:02 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Sat, 10 May 2008 18:33:02 -0700 (PDT) Subject: [Gambas-devel] Images on wiki v3 In-Reply-To: <200805091955.45796.gambas@...1...> Message-ID: <264078.71973.qm@...586...> ok, Regards David --- Benoit Minisini wrote: > On vendredi 9 mai 2008, David Villalobos Cambronero > wrote: > > Hi all > > > > Can I add an image to the gambasdoc.org but for > Gambas 3? I just can do it > > for Gambas 2. > > > > Can someone confirm? > > > > Regards > > > > David > > > > You don't need to do that: you just need to create a > link on the image in the > gambas 3 specific page, and not in the gambas 2 > specific page. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 > JavaOne(SM) Conference > Don't miss this year's exciting event. There's still > time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Sun May 11 12:58:25 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 11 May 2008 12:58:25 +0200 Subject: [Gambas-devel] Translations for Gambas3 In-Reply-To: <757078.63878.qm@...587...> References: <757078.63878.qm@...587...> Message-ID: <200805111258.25879.gambas@...1...> On dimanche 11 mai 2008, David Villalobos Cambronero wrote: > Hi, OK here it is: > > Usually I try to find some new strings to be > translated in the Gambas 3 IDE > (../trunk/app/src/gambas3), the project opens OK but > when I go to the menu: Project/Translate, to > translate, the FTranslate form just doesn't open. In > the status bar appears a message: ?compiling project > gambas3...? and that's all. > > But if I save the Gambas 3 IDE in another place, for > example my /home directory, then the FTranslate > windows opens. > > The problem is that Translate Dialog doesn't appears > when I'm working in the /src directory, but if I'm > working in other one then the dialog appears. > > Here's why (I found the error, but no sure if it is > mine): > > In the source directory (../trunk/app/src/gambas3) the > file: ?.startup? file belongs to root, as well as the > group, that's why ?If Project.Compile() Then Return > (Fmain:614)? returns true and the FTranslate window > never opens. > > And when I save the project in another place, the > file: ?.startup? belongs to the current user, and then > everything goes fine. > > Now I have tow problems: > > 1 Why this file belongs to root if I download the > sources from svn repository as normal user? > > 2 I never see the error message: ?gbc: ERROR: Cannot > create .startup file?. I'm supposed to see it just in > debug mode or it should appear in the status bar? > > Can someone help please? > > Best regards... > > David You found the trick. During the "make install" process, all Gambas projects located in the sources are compiled, and so their .startup files are created as root. The other problem is that you don't get the error message from the IDE, which is a shame. Note that the compiler generate other files, so your problems exists for other part of the IDE. This is actually a design flaw in the build process. Gambas projects should be compiled during the "make" step, not the "make install". But this is impossible at the moment as the compilation of Gambas projects need the libraries installed during "make install". This is a chicken-egg story... I have no real solution at the moment. Maybe just make the project read-only when .startup is detected as non writable? -- Benoit Minisini From gambas at ...1... Sun May 11 17:47:36 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 11 May 2008 17:47:36 +0200 Subject: [Gambas-devel] Translations for Gambas3 In-Reply-To: <200805111258.25879.gambas@...1...> References: <757078.63878.qm@...587...> <200805111258.25879.gambas@...1...> Message-ID: <200805111747.36665.gambas@...1...> On dimanche 11 mai 2008, Benoit Minisini wrote: > On dimanche 11 mai 2008, David Villalobos Cambronero wrote: > > Hi, OK here it is: > > > > Usually I try to find some new strings to be > > translated in the Gambas 3 IDE > > (../trunk/app/src/gambas3), the project opens OK but > > when I go to the menu: Project/Translate, to > > translate, the FTranslate form just doesn't open. In > > the status bar appears a message: ?compiling project > > gambas3...? and that's all. > > > > But if I save the Gambas 3 IDE in another place, for > > example my /home directory, then the FTranslate > > windows opens. > > > > The problem is that Translate Dialog doesn't appears > > when I'm working in the /src directory, but if I'm > > working in other one then the dialog appears. > > > > Here's why (I found the error, but no sure if it is > > mine): > > > > In the source directory (../trunk/app/src/gambas3) the > > file: ?.startup? file belongs to root, as well as the > > group, that's why ?If Project.Compile() Then Return > > (Fmain:614)? returns true and the FTranslate window > > never opens. > > > > And when I save the project in another place, the > > file: ?.startup? belongs to the current user, and then > > everything goes fine. > > > > Now I have tow problems: > > > > 1 Why this file belongs to root if I download the > > sources from svn repository as normal user? > > > > 2 I never see the error message: ?gbc: ERROR: Cannot > > create .startup file?. I'm supposed to see it just in > > debug mode or it should appear in the status bar? > > > > Can someone help please? > > > > Best regards... > > > > David > > You found the trick. > > During the "make install" process, all Gambas projects located in the > sources are compiled, and so their .startup files are created as root. > > The other problem is that you don't get the error message from the IDE, > which is a shame. > > Note that the compiler generate other files, so your problems exists for > other part of the IDE. > > This is actually a design flaw in the build process. Gambas projects should > be compiled during the "make" step, not the "make install". But this is > impossible at the moment as the compilation of Gambas projects need the > libraries installed during "make install". This is a chicken-egg story... > > I have no real solution at the moment. > > Maybe just make the project read-only when .startup is detected as non > writable? Finally, I have a solution: when the compiler creates a new file, it will try to set the owner and group of this file to the owner and group of the ".project" file. That solves all the problems, doesn't it?. Regards, -- Benoit Minisini From gambas at ...1... Sun May 11 20:07:48 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 11 May 2008 20:07:48 +0200 Subject: [Gambas-devel] Translations for Gambas3 In-Reply-To: <200805111747.36665.gambas@...1...> References: <757078.63878.qm@...587...> <200805111258.25879.gambas@...1...> <200805111747.36665.gambas@...1...> Message-ID: <200805112007.49091.gambas@...1...> On dimanche 11 mai 2008, Benoit Minisini wrote: > On dimanche 11 mai 2008, Benoit Minisini wrote: > > On dimanche 11 mai 2008, David Villalobos Cambronero wrote: > > > Hi, OK here it is: > > > > > > Usually I try to find some new strings to be > > > translated in the Gambas 3 IDE > > > (../trunk/app/src/gambas3), the project opens OK but > > > when I go to the menu: Project/Translate, to > > > translate, the FTranslate form just doesn't open. In > > > the status bar appears a message: ?compiling project > > > gambas3...? and that's all. > > > > > > But if I save the Gambas 3 IDE in another place, for > > > example my /home directory, then the FTranslate > > > windows opens. > > > > > > The problem is that Translate Dialog doesn't appears > > > when I'm working in the /src directory, but if I'm > > > working in other one then the dialog appears. > > > > > > Here's why (I found the error, but no sure if it is > > > mine): > > > > > > In the source directory (../trunk/app/src/gambas3) the > > > file: ?.startup? file belongs to root, as well as the > > > group, that's why ?If Project.Compile() Then Return > > > (Fmain:614)? returns true and the FTranslate window > > > never opens. > > > > > > And when I save the project in another place, the > > > file: ?.startup? belongs to the current user, and then > > > everything goes fine. > > > > > > Now I have tow problems: > > > > > > 1 Why this file belongs to root if I download the > > > sources from svn repository as normal user? > > > > > > 2 I never see the error message: ?gbc: ERROR: Cannot > > > create .startup file?. I'm supposed to see it just in > > > debug mode or it should appear in the status bar? > > > > > > Can someone help please? > > > > > > Best regards... > > > > > > David > > > > You found the trick. > > > > During the "make install" process, all Gambas projects located in the > > sources are compiled, and so their .startup files are created as root. > > > > The other problem is that you don't get the error message from the IDE, > > which is a shame. > > > > Note that the compiler generate other files, so your problems exists for > > other part of the IDE. > > > > This is actually a design flaw in the build process. Gambas projects > > should be compiled during the "make" step, not the "make install". But > > this is impossible at the moment as the compilation of Gambas projects > > need the libraries installed during "make install". This is a chicken-egg > > story... > > > > I have no real solution at the moment. > > > > Maybe just make the project read-only when .startup is detected as non > > writable? > > Finally, I have a solution: when the compiler creates a new file, it will > try to set the owner and group of this file to the owner and group of > the ".project" file. > > That solves all the problems, doesn't it?. > > Regards, The feature has been implemented in revision #1369. Please tell me if it solves the trick for you! -- Benoit Minisini From acardenas at ...598... Sun May 11 21:30:02 2008 From: acardenas at ...598... (Jose Alonso Cardenas Marquez) Date: Sun, 11 May 2008 14:30:02 -0500 Subject: [Gambas-devel] gambas 2.6.0 on FreeBSD Message-ID: <4a173bfc0805111230n15a29081gb8448eef8fed8d8@...178...> Hi I'm trying run gambas 2.6.0 on my FreeBSD box (6.3-STABLE). I have compiled all components except some like qte, firebird, sqlite2 and v4linux. The problem is when i run gambas2 from my xterm, i only see the message "ERROR: #2: Cannot load class 'Action': Unable to load class file". The same problem i have obtained using versions 2.4.x and 2.5.x of gambas. I could make more tests if you want it because i'm planning to update gambas into FreeBSD port tree Greetings ACM From david_villalobos_c at ...7... Mon May 12 14:32:02 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 12 May 2008 05:32:02 -0700 (PDT) Subject: [Gambas-devel] Translations for Gambas3 Message-ID: <206706.44038.qm@...584...> Hi, that's what I get on make: n.c' || echo './'`gbx_extern.c gbx_extern.c: En la funci?n ?EXTERN_call?: gbx_extern.c:381: error: expected expression before ?else? make[4]: *** [gbx3-gbx_extern.o] Error 1 make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbx' make[3]: *** [all-recursive] Error 1 make[3]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' make[2]: *** [all] Error 2 make[2]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' make[1]: *** [all-recursive] Error 1 make[1]: se sale del directorio `/home/alumno/Gambas/3/trunk' make: *** [all] Error 2 ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Sunday, May 11, 2008 12:07:48 PM Subject: Re: [Gambas-devel] Translations for Gambas3 On dimanche 11 mai 2008, Benoit Minisini wrote: > On dimanche 11 mai 2008, Benoit Minisini wrote: > > On dimanche 11 mai 2008, David Villalobos Cambronero wrote: > > > Hi, OK here it is: > > > > > > Usually I try to find some new strings to be > > > translated in the Gambas 3 IDE > > > (../trunk/app/src/gambas3), the project opens OK but > > > when I go to the menu: Project/Translate, to > > > translate, the FTranslate form just doesn't open. In > > > the status bar appears a message: ?compiling project > > > gambas3...? and that's all. > > > > > > But if I save the Gambas 3 IDE in another place, for > > > example my /home directory, then the FTranslate > > > windows opens. > > > > > > The problem is that Translate Dialog doesn't appears > > > when I'm working in the /src directory, but if I'm > > > working in other one then the dialog appears. > > > > > > Here's why (I found the error, but no sure if it is > > > mine): > > > > > > In the source directory (../trunk/app/src/gambas3) the > > > file: ?.startup? file belongs to root, as well as the > > > group, that's why ?If Project.Compile() Then Return > > > (Fmain:614)? returns true and the FTranslate window > > > never opens. > > > > > > And when I save the project in another place, the > > > file: ?.startup? belongs to the current user, and then > > > everything goes fine. > > > > > > Now I have tow problems: > > > > > > 1 Why this file belongs to root if I download the > > > sources from svn repository as normal user? > > > > > > 2 I never see the error message: ?gbc: ERROR: Cannot > > > create .startup file?. I'm supposed to see it just in > > > debug mode or it should appear in the status bar? > > > > > > Can someone help please? > > > > > > Best regards... > > > > > > David > > > > You found the trick. > > > > During the "make install" process, all Gambas projects located in the > > sources are compiled, and so their .startup files are created as root. > > > > The other problem is that you don't get the error message from the IDE, > > which is a shame. > > > > Note that the compiler generate other files, so your problems exists for > > other part of the IDE. > > > > This is actually a design flaw in the build process. Gambas projects > > should be compiled during the "make" step, not the "make install". But > > this is impossible at the moment as the compilation of Gambas projects > > need the libraries installed during "make install". This is a chicken-egg > > story... > > > > I have no real solution at the moment. > > > > Maybe just make the project read-only when .startup is detected as non > > writable? > > Finally, I have a solution: when the compiler creates a new file, it will > try to set the owner and group of this file to the owner and group of > the ".project" file. > > That solves all the problems, doesn't it?. > > Regards, The feature has been implemented in revision #1369. Please tell me if it solves the trick for you! -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Mon May 12 18:10:36 2008 From: gambas at ...1... (Benoit Minisini) Date: Mon, 12 May 2008 18:10:36 +0200 Subject: [Gambas-devel] Translations for Gambas3 In-Reply-To: <206706.44038.qm@...584...> References: <206706.44038.qm@...584...> Message-ID: <200805121810.36726.gambas@...1...> On lundi 12 mai 2008, David Villalobos Cambronero wrote: > Hi, that's what I get on make: > > n.c' || echo './'`gbx_extern.c > gbx_extern.c: En la funci?n ?EXTERN_call?: > gbx_extern.c:381: error: expected expression before ?else? > make[4]: *** [gbx3-gbx_extern.o] Error 1 > make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbx' > make[3]: *** [all-recursive] Error 1 > make[3]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[2]: *** [all] Error 2 > make[2]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[1]: *** [all-recursive] Error 1 > make[1]: se sale del directorio `/home/alumno/Gambas/3/trunk' > make: *** [all] Error 2 > It should be fixed in revision #1370. Strange that I didn't see that before... Maybe ccache is the responsible! -- Benoit Minisini From david_villalobos_c at ...7... Mon May 12 20:06:51 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 12 May 2008 11:06:51 -0700 (PDT) Subject: [Gambas-devel] Translations for Gambas3 Message-ID: <171322.47124.qm@...586...> Hi, now I get this: make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbx' Making all in gbc make[4]: se ingresa al directorio `/home/alumno/Gambas/3/trunk/main/gbc' gcc -DHAVE_CONFIG_H -I. -I.. -I../share -I../libltdl -DGAMBAS_PATH="\"/usr/local/bin\"" -pipe -Wall -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -MT gbc3-gbc_read.o -MD -MP -MF .deps/gbc3-gbc_read.Tpo -c -o gbc3-gbc_read.o `test -f 'gbc_read.c' || echo './'`gbc_read.c mv -f .deps/gbc3-gbc_read.Tpo .deps/gbc3-gbc_read.Po gcc -DHAVE_CONFIG_H -I. -I.. -I../share -I../libltdl -DGAMBAS_PATH="\"/usr/local/bin\"" -pipe -Wall -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -MT gbc3-gbc_compile.o -MD -MP -MF .deps/gbc3-gbc_compile.Tpo -c -o gbc3-gbc_compile.o `test -f 'gbc_compile.c' || echo './'`gbc_compile.c gbc_compile.c:53:23: error: gbc_chown.h: No existe el fichero o el directorio gbc_compile.c: En la funci?n ?COMPILE_init?: gbc_compile.c:241: aviso: declaraci?n impl?cita de la funci?n ?FILE_set_owner? make[4]: *** [gbc3-gbc_compile.o] Error 1 make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbc' make[3]: *** [all-recursive] Error 1 make[3]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' make[2]: *** [all] Error 2 make[2]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' make[1]: *** [all-recursive] Error 1 make[1]: se sale del directorio `/home/alumno/Gambas/3/trunk' make: *** [all] Error 2 ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Monday, May 12, 2008 10:10:36 AM Subject: Re: [Gambas-devel] Translations for Gambas3 On lundi 12 mai 2008, David Villalobos Cambronero wrote: > Hi, that's what I get on make: > > n.c' || echo './'`gbx_extern.c > gbx_extern.c: En la funci?n ?EXTERN_call?: > gbx_extern.c:381: error: expected expression before ?else? > make[4]: *** [gbx3-gbx_extern.o] Error 1 > make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbx' > make[3]: *** [all-recursive] Error 1 > make[3]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[2]: *** [all] Error 2 > make[2]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[1]: *** [all-recursive] Error 1 > make[1]: se sale del directorio `/home/alumno/Gambas/3/trunk' > make: *** [all] Error 2 > It should be fixed in revision #1370. Strange that I didn't see that before... Maybe ccache is the responsible! -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From gambas at ...1... Mon May 12 20:25:43 2008 From: gambas at ...1... (Benoit Minisini) Date: Mon, 12 May 2008 20:25:43 +0200 Subject: [Gambas-devel] Translations for Gambas3 In-Reply-To: <171322.47124.qm@...586...> References: <171322.47124.qm@...586...> Message-ID: <200805122025.43263.gambas@...1...> On lundi 12 mai 2008, David Villalobos Cambronero wrote: > Hi, now I get this: > > make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbx' > Making all in gbc > make[4]: se ingresa al directorio `/home/alumno/Gambas/3/trunk/main/gbc' > gcc -DHAVE_CONFIG_H -I. -I.. -I../share -I../libltdl > -DGAMBAS_PATH="\"/usr/local/bin\"" -pipe -Wall -Wno-unused-value > -fsigned-char -fvisibility=hidden -g -Os -MT gbc3-gbc_read.o -MD -MP -MF > .deps/gbc3-gbc_read.Tpo -c -o gbc3-gbc_read.o `test -f 'gbc_read.c' || echo > './'`gbc_read.c mv -f .deps/gbc3-gbc_read.Tpo .deps/gbc3-gbc_read.Po > gcc -DHAVE_CONFIG_H -I. -I.. -I../share -I../libltdl > -DGAMBAS_PATH="\"/usr/local/bin\"" -pipe -Wall -Wno-unused-value > -fsigned-char -fvisibility=hidden -g -Os -MT gbc3-gbc_compile.o -MD -MP > -MF .deps/gbc3-gbc_compile.Tpo -c -o gbc3-gbc_compile.o `test -f > 'gbc_compile.c' || echo './'`gbc_compile.c gbc_compile.c:53:23: error: > gbc_chown.h: No existe el fichero o el directorio gbc_compile.c: En la > funci?n ?COMPILE_init?: > gbc_compile.c:241: aviso: declaraci?n impl?cita de la funci?n > ?FILE_set_owner? make[4]: *** [gbc3-gbc_compile.o] Error 1 > make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbc' > make[3]: *** [all-recursive] Error 1 > make[3]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[2]: *** [all] Error 2 > make[2]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[1]: *** [all-recursive] Error 1 > make[1]: se sale del directorio `/home/alumno/Gambas/3/trunk' > make: *** [all] Error 2 > > Argh. As usual, I forgot to add the two new source files that implement these functions. It is fixed in revision #1371. Do not forget to reconfigure the main sub-directory! Regards, -- Benoit Minisini From gambas at ...1... Mon May 12 20:32:10 2008 From: gambas at ...1... (Benoit Minisini) Date: Mon, 12 May 2008 20:32:10 +0200 Subject: [Gambas-devel] gambas 2.6.0 on FreeBSD In-Reply-To: <4a173bfc0805111230n15a29081gb8448eef8fed8d8@...178...> References: <4a173bfc0805111230n15a29081gb8448eef8fed8d8@...178...> Message-ID: <200805122032.10562.gambas@...1...> On dimanche 11 mai 2008, Jose Alonso Cardenas Marquez wrote: > Hi > > I'm trying run gambas 2.6.0 on my FreeBSD box (6.3-STABLE). I have > compiled all components except some like qte, firebird, sqlite2 and > v4linux. The problem is when i run gambas2 from my xterm, i only see > the message "ERROR: #2: Cannot load class 'Action': Unable to load > class file". The same problem i have obtained using versions 2.4.x and > 2.5.x of gambas. > > I could make more tests if you want it because i'm planning to update > gambas into FreeBSD port tree > > Greetings > ACM > Please send me the full output of 'configure', 'make' and 'make install'. The Action class is defined in the gb.qt part made in Gambas, and so maybe this part was not compiled during the 'make install'. With the ouptut I may see if there was an error. Regards, -- Benoit Minisini From david_villalobos_c at ...7... Mon May 12 20:50:04 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 12 May 2008 11:50:04 -0700 (PDT) Subject: [Gambas-devel] Translations for Gambas3 Message-ID: <300328.12437.qm@...566...> Great!!!! It works.... Many thanks David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Monday, May 12, 2008 12:25:43 PM Subject: Re: [Gambas-devel] Translations for Gambas3 On lundi 12 mai 2008, David Villalobos Cambronero wrote: > Hi, now I get this: > > make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbx' > Making all in gbc > make[4]: se ingresa al directorio `/home/alumno/Gambas/3/trunk/main/gbc' > gcc -DHAVE_CONFIG_H -I. -I.. -I../share -I../libltdl > -DGAMBAS_PATH="\"/usr/local/bin\"" -pipe -Wall -Wno-unused-value > -fsigned-char -fvisibility=hidden -g -Os -MT gbc3-gbc_read.o -MD -MP -MF > .deps/gbc3-gbc_read.Tpo -c -o gbc3-gbc_read.o `test -f 'gbc_read.c' || echo > './'`gbc_read.c mv -f .deps/gbc3-gbc_read.Tpo .deps/gbc3-gbc_read.Po > gcc -DHAVE_CONFIG_H -I. -I.. -I../share -I../libltdl > -DGAMBAS_PATH="\"/usr/local/bin\"" -pipe -Wall -Wno-unused-value > -fsigned-char -fvisibility=hidden -g -Os -MT gbc3-gbc_compile.o -MD -MP > -MF .deps/gbc3-gbc_compile.Tpo -c -o gbc3-gbc_compile.o `test -f > 'gbc_compile.c' || echo './'`gbc_compile.c gbc_compile.c:53:23: error: > gbc_chown.h: No existe el fichero o el directorio gbc_compile.c: En la > funci?n ?COMPILE_init?: > gbc_compile.c:241: aviso: declaraci?n impl?cita de la funci?n > ?FILE_set_owner? make[4]: *** [gbc3-gbc_compile.o] Error 1 > make[4]: se sale del directorio `/home/alumno/Gambas/3/trunk/main/gbc' > make[3]: *** [all-recursive] Error 1 > make[3]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[2]: *** [all] Error 2 > make[2]: se sale del directorio `/home/alumno/Gambas/3/trunk/main' > make[1]: *** [all-recursive] Error 1 > make[1]: se sale del directorio `/home/alumno/Gambas/3/trunk' > make: *** [all] Error 2 > > Argh. As usual, I forgot to add the two new source files that implement these functions. It is fixed in revision #1371. Do not forget to reconfigure the main sub-directory! Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Mon May 12 21:07:36 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 12 May 2008 12:07:36 -0700 (PDT) Subject: [Gambas-devel] Versioning on Gambas3 Message-ID: <719575.56850.qm@...587...> Hi, I just used the Versioning Tab in the Project menu, it is marvelous, and pretty easy to use... By the way the Translation window open now with out problem. Regards David ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From david_villalobos_c at ...7... Mon May 12 21:13:38 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 12 May 2008 12:13:38 -0700 (PDT) Subject: [Gambas-devel] Numeric error on gb.db Message-ID: <969395.96434.qm@...594...> Hi all, I got a problem with the gb.db component. If I store a 100 into a table, the real value sent to the gb.db driver is 5.335425818409E-315 Attached is an example. Can someone validate, and maybe help? Regards David ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ -------------- next part -------------- A non-text attachment was scrubbed... Name: db.error-0.0.1.tar.gz Type: application/x-gzip Size: 8658 bytes Desc: not available URL: From acardenas at ...598... Tue May 13 06:02:51 2008 From: acardenas at ...598... (Jose Alonso Cardenas Marquez) Date: Mon, 12 May 2008 23:02:51 -0500 Subject: [Gambas-devel] gambas 2.6.0 on FreeBSD In-Reply-To: <200805122032.10562.gambas@...1...> References: <4a173bfc0805111230n15a29081gb8448eef8fed8d8@...178...> <200805122032.10562.gambas@...1...> Message-ID: <4a173bfc0805122102w48c54e2ah62d50aaae1a86a52@...178...> > > Please send me the full output of 'configure', 'make' and 'make install'. > > The Action class is defined in the gb.qt part made in Gambas, and so maybe > this part was not compiled during the 'make install'. With the ouptut I may > see if there was an error. > > Regards, > > -- > Benoit Minisini Finally, I have gambas 2.6.0 working on my FreeBSD box partially, now i have a problem while i'm trying create a new project. I write the name and title information and I push the next button and it is trying to create a new directory using project name, if i push next button again, i see the mesage indicating that the project directory exists. I thought that on 3 step of project wizard would be create project name file but it's creating a directory instead of If I cancel project wizard, it will abort with an error (This application has raised and unexpected error and must abort - FCreateProject.Run.10: #6: Type mismatch: wanted Boolean, got Function instead), and i can see the following lines on my console output [acm at ...599...]# gambas2 QSettings::sync: filename is null/empty FCreateProject.Run.10: #6: Type mismatch: wanted Boolean, got Function instead 0: FCreateProject.Run.10 1: FWelcome.btnNew_Click.100 2: CCoolButton.Panel_MouseUp.117 3: FWelcome.Run.30 4: Project.Main.166 QThread: internal error: zero data for running thread. I have installed QT 3.3.8 KDELIBS 3.5.8 KDEBASE 3.5.8 Greetings ACM From gambas at ...1... Tue May 13 14:52:40 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 13 May 2008 14:52:40 +0200 Subject: [Gambas-devel] Numeric error on gb.db In-Reply-To: <969395.96434.qm@...594...> References: <969395.96434.qm@...594...> Message-ID: <200805131452.40581.gambas@...1...> On lundi 12 mai 2008, David Villalobos Cambronero wrote: > Hi all, > > I got a problem with the gb.db component. If I store a 100 into a table, > the real value sent to the gb.db driver is 5.335425818409E-315 > > Attached is an example. > > Can someone validate, and maybe help? > > Regards > > David > > The bug is fixed in the revision #1373. As it was a partly a bug in a common header, you will have to recompile everything. :-) Regards, -- Benoit Minisini From david_villalobos_c at ...7... Tue May 13 17:03:28 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Tue, 13 May 2008 08:03:28 -0700 (PDT) Subject: [Gambas-devel] Errors on ValueBox set as Date Message-ID: <654480.15111.qm@...556...> Hi all, I see two problems in ValueBox (Set to Date) in Gambas 3 (svn 1371): 1- When I push the Calendar button, the Cal is shown, that is correct, when I push it again the Cal is hidden, and so on, but the fourth time I push it, the Cal is not hidden. To reproduce the bug just push sometimes the Cal button. 2- Let's suppose we move a Form (Containing a ValueBox set to Date) from the left of the monitor to the right of the monitor and push the Cal button, then the Cal is shown but at the left of the monitor and should be shown at the right side as the Form. This happens to DatePicker too. Attached is a picture for second error. I use KDE with Mandriva 2008.1. Can someone validate please? Regards David. -------------- next part -------------- A non-text attachment was scrubbed... Name: Cal.png Type: image/png Size: 107032 bytes Desc: not available URL: From david_villalobos_c at ...7... Wed May 14 14:16:03 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 14 May 2008 05:16:03 -0700 (PDT) Subject: [Gambas-devel] Some errors in Gambas 3 svn 1375 Message-ID: <189566.43924.qm@...591...> Hi all, I got some erros when I try to create or open a project: 1- CClassInfo._new.32 Not an object 2- CClassInfo._new.32 Unknown symbol 'Add' in class 'CComponent' 3- CClassInfo._new.32 Null object 4- CClassInfo._new.32 Null object 5- CComponent.Load.452 'Control class is missing in gb.form component exported classes 6- CClassInfo._new.32 Null object 7- CComponent.Load.452 'Control class is missing in gb.qt.ext component exported classes Then the IDE opens but if I go to Project/Properties got the error shown in the attached picture. I use Mandriva 2008.1 & KDE Can someone validate, please? Regards David -------------- next part -------------- A non-text attachment was scrubbed... Name: Error01.png Type: image/png Size: 14361 bytes Desc: not available URL: From david_villalobos_c at ...7... Wed May 14 14:16:54 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 14 May 2008 05:16:54 -0700 (PDT) Subject: [Gambas-devel] Error in "Update all forms" Message-ID: <27457.20399.qm@...557...> I got an error when use the "Update all forms" tool. It is shown in the attached image. I use Mandriva 2008.1 & KDE Can someone validate, please? Regards David -------------- next part -------------- A non-text attachment was scrubbed... Name: Error02.png Type: image/png Size: 13587 bytes Desc: not available URL: From david_villalobos_c at ...7... Wed May 14 14:18:54 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 14 May 2008 05:18:54 -0700 (PDT) Subject: [Gambas-devel] Copy&Paste Gambas 3 svn 1375 Message-ID: <807558.31839.qm@...586...> Hi all, I got the following message when I copy and paste something (See attached picture) Can someone validate? Regards David -------------- next part -------------- A non-text attachment was scrubbed... Name: Error03.png Type: image/png Size: 11460 bytes Desc: not available URL: From david_villalobos_c at ...7... Wed May 14 14:34:47 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 14 May 2008 05:34:47 -0700 (PDT) Subject: [Gambas-devel] Some errors in Gambas 3 svn 1375 Message-ID: <245358.65060.qm@...566...> Sorry, seems to be fixed on rev 1377 Regards David ----- Original Message ---- From: David Villalobos Cambronero To: Gambas-devel Sent: Wednesday, May 14, 2008 6:16:03 AM Subject: [Gambas-devel] Some errors in Gambas 3 svn 1375 Hi all, I got some erros when I try to create or open a project: 1- CClassInfo._new.32 Not an object 2- CClassInfo._new.32 Unknown symbol 'Add' in class 'CComponent' 3- CClassInfo._new.32 Null object 4- CClassInfo._new.32 Null object 5- CComponent.Load.452 'Control class is missing in gb.form component exported classes 6- CClassInfo._new.32 Null object 7- CComponent.Load.452 'Control class is missing in gb.qt.ext component exported classes Then the IDE opens but if I go to Project/Properties got the error shown in the attached picture. I use Mandriva 2008.1 & KDE Can someone validate, please? Regards David From gambas at ...1... Wed May 14 14:45:14 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 14 May 2008 14:45:14 +0200 Subject: [Gambas-devel] Copy&Paste Gambas 3 svn 1375 In-Reply-To: <807558.31839.qm@...586...> References: <807558.31839.qm@...586...> Message-ID: <200805141445.14303.gambas@...1...> On mercredi 14 mai 2008, David Villalobos Cambronero wrote: > Hi all, > > I got the following message when I copy and paste something (See attached > picture) > > Can someone validate? > > Regards > > David Upgrade to revision #1378, it is fixed. Always try the latest revision when you have a bug or a problem! Regards, -- Benoit Minisini From david_villalobos_c at ...7... Wed May 14 16:51:49 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 14 May 2008 07:51:49 -0700 (PDT) Subject: [Gambas-devel] Docs for gb.db.mysql Message-ID: <282882.46327.qm@...591...> Hi Benoit, Some days ago I wrote some pages on the wiki but now I can't get to them by the following the links on the wiki but following the "Last Changes" link. Did you change something or I'm doing something wrong? For example: http://gambasdoc.org/help/comp/gb.db.mysql/_mysql/engine exists, but I can't get there by following the wiki links ...help/comp/gb.db.mysql/connection/mysql?v3... Regards David From gambas at ...1... Wed May 14 18:28:39 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 14 May 2008 18:28:39 +0200 Subject: [Gambas-devel] Docs for gb.db.mysql In-Reply-To: <282882.46327.qm@...591...> References: <282882.46327.qm@...591...> Message-ID: <200805141828.39982.gambas@...1...> On mercredi 14 mai 2008, David Villalobos Cambronero wrote: > Hi Benoit, > > Some days ago I wrote some pages on the wiki but now I can't get to them by > the following the links on the wiki but following the "Last Changes" link. > > Did you change something or I'm doing something wrong? > > For example: > > http://gambasdoc.org/help/comp/gb.db.mysql/_mysql/engine exists, but I > can't get there by following the wiki links > > ...help/comp/gb.db.mysql/connection/mysql?v3... > > Regards > > David > Maybe you did something wrong? I deleted and created again the /comp/gb.db.mysql/connection/mysql?v3 page, and things seem to be normal... -- Benoit Minisini From david_villalobos_c at ...7... Wed May 14 19:19:55 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Wed, 14 May 2008 10:19:55 -0700 (PDT) Subject: [Gambas-devel] Docs for gb.db.mysql Message-ID: <140080.9494.qm@...557...> ohh my Good... Everything seems to be OK, I'm going mad... maybe I'll have to stop teaching.... Anyway.. Thanks ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Wednesday, May 14, 2008 10:28:39 AM Subject: Re: [Gambas-devel] Docs for gb.db.mysql On mercredi 14 mai 2008, David Villalobos Cambronero wrote: > Hi Benoit, > > Some days ago I wrote some pages on the wiki but now I can't get to them by > the following the links on the wiki but following the "Last Changes" link. > > Did you change something or I'm doing something wrong? > > For example: > > http://gambasdoc.org/help/comp/gb.db.mysql/_mysql/engine exists, but I > can't get there by following the wiki links > > ...help/comp/gb.db.mysql/connection/mysql?v3... > > Regards > > David > Maybe you did something wrong? I deleted and created again the /comp/gb.db.mysql/connection/mysql?v3 page, and things seem to be normal... -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel From jredrejo at ...176... Mon May 26 11:45:22 2008 From: jredrejo at ...176... (=?UTF-8?Q?Jos=C3=A9_Luis_Redrejo?=) Date: Mon, 26 May 2008 11:45:22 +0200 Subject: [Gambas-devel] make distclean Message-ID: <8eb28a500805260245k16a92320waf1c42755823f479@...178...> Hi, I''ve checked that making distclean on gambas sources directory, it deletes all the "*moc.cpp" files, there is a: test -z "*_moc.cpp" || rm -f *_moc.cpp line for every source directory. Is this correct or is it a bug? -------------- next part -------------- An HTML attachment was scrubbed... URL: From dcamposf at ...176... Mon May 26 12:02:31 2008 From: dcamposf at ...176... (Daniel Campos) Date: Mon, 26 May 2008 12:02:31 +0200 Subject: [Gambas-devel] make distclean In-Reply-To: <8eb28a500805260245k16a92320waf1c42755823f479@...178...> References: <8eb28a500805260245k16a92320waf1c42755823f479@...178...> Message-ID: <7259b5ae0805260302k2d9086f8sc71bd9643a936f60@...178...> _moc files are generated by the QT meta object compiler, so yes, I guess that's correct 2008/5/26 Jos? Luis Redrejo : > Hi, I''ve checked that making distclean on gambas sources directory, it > deletes all the "*moc.cpp" files, there is a: > > test -z "*_moc.cpp" || rm -f *_moc.cpp > > line for every source directory. > > Is this correct or is it a bug? > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lordheavym at ...176... Mon May 26 12:07:36 2008 From: lordheavym at ...176... (Laurent Carlier) Date: Mon, 26 May 2008 12:07:36 +0200 Subject: [Gambas-devel] make distclean In-Reply-To: <8eb28a500805260245k16a92320waf1c42755823f479@...178...> References: <8eb28a500805260245k16a92320waf1c42755823f479@...178...> Message-ID: <200805261207.36248.lordheavym@...176...> Le Monday 26 May 2008 11:45:22 Jos? Luis Redrejo, vous avez ?crit?: > Hi, I''ve checked that making distclean on gambas sources directory, it > deletes all the "*moc.cpp" files, there is a: > > test -z "*_moc.cpp" || rm -f *_moc.cpp > > line for every source directory. > > Is this correct or is it a bug? yes it's correct, *_moc.cpp files are build "on the fly" with moc from qt toolkit. ++ From david_villalobos_c at ...7... Mon May 26 14:13:15 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 26 May 2008 05:13:15 -0700 (PDT) Subject: [Gambas-devel] gb.db.mysql example Message-ID: <344713.86614.qm@...588...> Hi Benoit: Attached is a simple example to show the way gb.db.mysql works. I think is a good idea to add it to the gambas examples. Please take a look at it and tell me if it's OK to add it or if I have to make some changes. Best regards. David -------------- next part -------------- A non-text attachment was scrubbed... Name: MySQL-0.0.1.tar.gz Type: application/x-tgz Size: 40764 bytes Desc: not available URL: From david_villalobos_c at ...7... Mon May 26 14:14:33 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 26 May 2008 05:14:33 -0700 (PDT) Subject: [Gambas-devel] MySQLBrowser Message-ID: <52297.8848.qm@...566...> Hi Benoit: Attached is an example of something that I call MySQLBrowser. Its goal is to retrieve information form an specific database. Most of my applications has database access, and many times I needed a "quick" access to the database I'm currently using, so MySQLBrowser solve most of the problems. Some features are: Runs querys and show its output. Database backup. Table backup. You can specify the connection parameters in the "Properties" section. Retrieves: tables, views, indexes and fields info. Shows output in different formats (-v, -vv, -vvv, -t). Highlights most of MySQL keywords. It is gb.db.mysql independent but MySQL specific since most of information is retrived from information_schema. I think it will be a good complement for the gb.db.mysql component, but it uses some other gambas components wish mean that gb.db.mysql will need gb.form, gb.qt, and gb.qt.ext. I see no problem since all these components are normally compiled but I want to know your opinion. If MySQLBrowser can't be part of gb.db.mysql I think we can create something like gb.mysqlbrowser, gb.db.mysql.form, gb.db.mysql.browser. But any way please take a look at its and please let me know your comments. Best regards David -------------- next part -------------- A non-text attachment was scrubbed... Name: gb.David-0.0.39.tar.gz Type: application/x-tgz Size: 52585 bytes Desc: not available URL: From david_villalobos_c at ...7... Mon May 26 14:24:08 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 26 May 2008 05:24:08 -0700 (PDT) Subject: [Gambas-devel] Gambas on Mandriva 2008.1 64Bits Message-ID: <986219.24784.qm@...556...> I know it was time ago... Just to confirm Gambas 3 and Wisdom 0.4 compile fine in Mandriva 2008.1 64 Bits Attached the requeriments. Wiki page updated. Best regards David ----- Original Message ---- From: David Villalobos Cambronero To: mailing list for gambas developers Sent: Thursday, May 8, 2008 7:23:59 AM Subject: Re: [Gambas-devel] Gambas on Mandriva 2008.1 64Bits Well I'll try and tell you :-) Regards David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Thursday, May 8, 2008 6:55:13 AM Subject: Re: [Gambas-devel] Gambas on Mandriva 2008.1 64Bits On jeudi 8 mai 2008, David Villalobos Cambronero wrote: > Hi all, > > Does someone know if Gambas 3 can be compiled in Mandriva 2008.1 64 bits? > > Best Regards > > David > > Normally yes, but I never tried. -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel -------------- next part -------------- A non-text attachment was scrubbed... Name: 2008.1-64Bits Type: application/octet-stream Size: 556 bytes Desc: not available URL: From jredrejo at ...176... Mon May 26 15:41:59 2008 From: jredrejo at ...176... (=?UTF-8?Q?Jos=C3=A9_Luis_Redrejo?=) Date: Mon, 26 May 2008 15:41:59 +0200 Subject: [Gambas-devel] make distclean In-Reply-To: <200805261207.36248.lordheavym@...176...> References: <8eb28a500805260245k16a92320waf1c42755823f479@...178...> <200805261207.36248.lordheavym@...176...> Message-ID: <8eb28a500805260641p3d032b9ard75807939724caee@...178...> I suppossed that too, but then, I don't understand why they're included in the sources of gambas. 2008/5/26 Laurent Carlier : > Le Monday 26 May 2008 11:45:22 Jos? Luis Redrejo, vous avez ?crit : > > Hi, I''ve checked that making distclean on gambas sources directory, it > > deletes all the "*moc.cpp" files, there is a: > > > > test -z "*_moc.cpp" || rm -f *_moc.cpp > > > > line for every source directory. > > > > Is this correct or is it a bug? > > yes it's correct, *_moc.cpp files are build "on the fly" with moc from qt > toolkit. > > ++ > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lordheavym at ...176... Mon May 26 16:08:37 2008 From: lordheavym at ...176... (Laurent Carlier) Date: Mon, 26 May 2008 16:08:37 +0200 Subject: [Gambas-devel] make distclean In-Reply-To: <8eb28a500805260641p3d032b9ard75807939724caee@...178...> References: <8eb28a500805260245k16a92320waf1c42755823f479@...178...> <200805261207.36248.lordheavym@...176...> <8eb28a500805260641p3d032b9ard75807939724caee@...178...> Message-ID: <200805261608.37287.lordheavym@...176...> Le Monday 26 May 2008 15:41:59 Jos? Luis Redrejo, vous avez ?crit?: > I suppossed that too, but then, I don't understand why they're included in > the sources of gambas. > Perhaps because they are present in the Makefile.am file in the src dirs so they are included when make dist is done. ++ From gambas at ...1... Mon May 26 19:56:34 2008 From: gambas at ...1... (Benoit Minisini) Date: Mon, 26 May 2008 19:56:34 +0200 Subject: [Gambas-devel] Error in "Update all forms" In-Reply-To: <27457.20399.qm@...557...> References: <27457.20399.qm@...557...> Message-ID: <200805261956.34608.gambas@...1...> On mercredi 14 mai 2008, David Villalobos Cambronero wrote: > I got an error when use the "Update all forms" tool. > > It is shown in the attached image. > > I use Mandriva 2008.1 & KDE > > Can someone validate, please? > > Regards > > David I don't understand the message written in spanish. But can you send me the project before you run "Update all forms"? -- Benoit Minisini From david_villalobos_c at ...7... Mon May 26 20:29:12 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 26 May 2008 11:29:12 -0700 (PDT) Subject: [Gambas-devel] Error in "Update all forms" Message-ID: <576869.86725.qm@...586...> Yes, I'll send you tomorrow, since I don't have it now. The message says: "Cannot save file". But I have noticed that this error occurs when is a project from Gambas 2, I mean, if you execute "Update all forms" in a Gambas 3 project it won't fail, but if the project is a Gambas 2, it will. Any way I'll send you the project tomorrow. Best regards David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Monday, May 26, 2008 11:56:34 AM Subject: Re: [Gambas-devel] Error in "Update all forms" On mercredi 14 mai 2008, David Villalobos Cambronero wrote: > I got an error when use the "Update all forms" tool. > > It is shown in the attached image. > > I use Mandriva 2008.1 & KDE > > Can someone validate, please? > > Regards > > David I don't understand the message written in spanish. But can you send me the project before you run "Update all forms"? -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel From david_villalobos_c at ...7... Tue May 27 18:46:55 2008 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Tue, 27 May 2008 09:46:55 -0700 (PDT) Subject: [Gambas-devel] Error in "Update all forms" Message-ID: <275917.7908.qm@...600...> Hi, Here is the example. I happened with the Gambas Database example. ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas developers Sent: Monday, May 26, 2008 11:56:34 AM Subject: Re: [Gambas-devel] Error in "Update all forms" On mercredi 14 mai 2008, David Villalobos Cambronero wrote: > I got an error when use the "Update all forms" tool. > > It is shown in the attached image. > > I use Mandriva 2008.1 & KDE > > Can someone validate, please? > > Regards > > David I don't understand the message written in spanish. But can you send me the project before you run "Update all forms"? -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel -------------- next part -------------- A non-text attachment was scrubbed... Name: Caliope-2.2.68.tar.gz Type: application/gzip Size: 205882 bytes Desc: not available URL: From gbadmin at ...601... Tue May 27 21:25:31 2008 From: gbadmin at ...601... (e wright) Date: Tue, 27 May 2008 16:25:31 -0300 Subject: [Gambas-devel] made a component to Gambas: a client for dict.org Message-ID: <77219d860805271225h55df1be3vf82d546ef01b480a@...178...> I have adapted a client to the dict.org or dictd (if you install it) To be a component of Gambas. It is avialable from: https://sourceforge.net/projects/cppdictspell I would like your comments. e.wright