From abidoo.too at ...4... Sun Feb 2 00:36:32 2003 From: abidoo.too at ...4... (Fabien BODARD) Date: Sun, 2 Feb 2003 00:36:32 +0100 Subject: [Gambas-devel] Developing together Message-ID: <200302020036.32823.abidoo.too@...4...> Hello to all First i want to say that is a real plasure to work with all of you. My name is Fabien BODARD and i'm 25 year old. I'm not a professionnal develloper but a winegrower :-). I'm first work on a 286 computer ... in the past on M$ win 3.1 with quickBasic. After I use VB 1, 2, 3, 4, 6. With the access database. So i've today some persistant probleme with SQL (but i'm worked it) I don't really know the C and C++ programming but I want to learn it and I think Gambas is a good project to begin the learn of this linguage. I've learn the Rebol linguage too (who is certainly one of the futur primary internet linguage. As you can see i don't have a good english (and i'll make a lot of error in french lol) But my hobby is linux and the idea of a free world. Gambas is my first plain project. (thank to benoit). With Gambas, I'm hoping to contribute something to the open source (thank Nigel ;-) ) I work on linux since 1996. (it was not really the same thing than today ;-) ) I want to give you my recent memory of VB work. Gambas in the future can be a really productive linguage. so we have the future for us. I dream after the gb.db componant at a cgi gambas or some componant to work directly with the html frame like php or vb. I think that i 'm going to learn the gtk protocol too to begin it's impl?mentation. Gambas can be one of the only linguage that can use multiple graphical widget libs. Actually, i'm work on the QTstatusbar but my too few kwonlege of the C++ syntaxe made me this work very difficulte. :-( But i love the difficulties. fabien P.S. Good luck to this reading... I've a to bad english explaination (do you understand me ? OUHARk) From abidoo.too at ...4... Sun Feb 2 00:37:14 2003 From: abidoo.too at ...4... (Fabien BODARD) Date: Sun, 2 Feb 2003 00:37:14 +0100 Subject: [Gambas-devel] ListView Message-ID: <200302020037.14282.abidoo.too@...4...> Salut Is there possible to implement a background color on the listitem? like the Kcompnant? (one row white and one row light blue). I want to begin a 'client' management program and i think it's more easy for the reading. Fabien From gambas at ...1... Sun Feb 16 11:56:49 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 16 Feb 2003 11:56:49 +0100 Subject: [Gambas-devel] Database component, RedHat and Mandrake problems Message-ID: <20030216124422.2223216336@...5...> Hello everybody, I have put a pre-version of gambas with a database component at the following url: http://gambas.sourceforge.net/gambas-0.44.1.tar.gz This package is intended to test, not to use ! This database component is composed of the following: - A main database component named gb.db - A postgresql driver component named gb.db.postgresql This component is sufficient, but limited, as it can query the database but cannot query nor modify its structure. I explained in the development mailing-list why querying and modifying the database structure is not standard, and so is more difficult to program. This functionality will be implemented in a far future... Now, I'm looking for a nice guy that will write a mysql driver. Hullo C hackers ! Nigel ? Jean-Marc ? Are you alive ? :-) The postgresql driver functions are documented in the source, and I will answer to any question of course. It is just a matter of writing the same thing, but for mysql ! A very good help is looking into the QT mysql driver source :-) If someone wants to write the mysql driver, tell me. I will add the mysql libraries and headers auto-detection in the gambas configure script, and the needed Makefile.am file. Another point, now. I have compiled all C++ gambas files with the options -fno-exceptions. Maybe this could solve the RedHat 8.0 problem. Can a kind RedHat-8.0 user tell me if this pre-version compiles without the "_UnwindGetIP" symbol missing error ? Moreover, I added an option in the gambas IDE project. Now the gambas IDE loads its component at startup before any memory allocation. Can Mandrake users having segfault test if the IDE crashes with this version ? Thanks in advance, and waiting for comment and help ! -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Sun Feb 16 11:42:18 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 16 Feb 2003 11:42:18 +0100 Subject: [Gambas-devel] Database component syntax Message-ID: <20030216124427.BB60016142@...5...> Here is a quick explanation of how to use the database component. **** Opening a database: DIM hDB AS NEW Database hDB.Type = "postgresql" hDB.Name = "mydabatabase" 'Optional parameters 'hDB.User = "benoit" 'hDB.Password = "" 'hDB.Port = 0 'hDB.Host = "AAA.BBB.CCC.DDD" hDB.Open **** Closing a database: HDB.Close **** Executing a query and getting the result DIM iId AS Integer DIM sName AS String DIM rResult AS Result DIM sField AS String iID = 1 sName = "Gambas" rResult = hDB.Exec("SELECT * INTO MyTable WHERE id = &1 AND name = &2", iId, sName) ' The iId and sName are substituted into the query, with automatic quoting ' => The executed query is "SELECT * INTO MyTable WHERE id = 1 AND ' name = 'Gambas'" ' Printing a result WHILE rResult.Available FOR EACH sField IN rResult.Fields PRINT sField; " = "; rResult[sField] NEXT PRINT rResult.MoveNext WEND **** Creating a record in a table rResult = hDB.Create("MyTable") rResult!id = 2 rResult!Name = "Python" rResult.Update ' => Generates an INSERT query **** Editing records in a table rResult = hDB.Edit("MyTable", "Name = &1", "Perl") ' => send the query "SELECT * INTO MyTable WHERE Name = 'Perl'" WHILE rResult.Available rResult!Name = "PHP" rResult.Update ' => Generates an UPDATE query rResult.MoveNext WEND BE CAREFUL ! You cannot edit records this way if the component cannot find a primary index in your table (in postgresql, a primary index on the table "MyTable" is an index named "MyTable_pkey"). If you have no primary index on your table, you must use Exec() with your own UPDATE query. **** Transactions hDB.Begin ... hDB.Commit ... hDB.Rollback BE CAREFUL ! The interface of the database component is not terminated, so it is subject to any change ! This is an EXPERIMENTAL component. Enjoy it all the same :-) -- Beno?t Minisini mailto:gambas at ...1... From nigel at ...2... Mon Feb 17 11:51:02 2003 From: nigel at ...2... (Nigel GERRARD) Date: Mon, 17 Feb 2003 11:51:02 +0100 Subject: [Gambas-devel] Database component, RedHat and Mandrake problems References: <20030216124422.2223216336@...5...> Message-ID: <009e01c2d673$05484280$0500050a@...3...> Sorry Benoit I've been on the road for the last couple of weeks. I will look at the code and see if there is anything I can help with. I think I'm still alive :-) but just can't keep up with the speed you are working!! Nigel ----- Original Message ----- From: "Beno?t Minisini" To: ; Sent: Sunday, February 16, 2003 11:56 AM Subject: [Gambas-devel] Database component, RedHat and Mandrake problems Hello everybody, I have put a pre-version of gambas with a database component at the following url: http://gambas.sourceforge.net/gambas-0.44.1.tar.gz This package is intended to test, not to use ! This database component is composed of the following: - A main database component named gb.db - A postgresql driver component named gb.db.postgresql This component is sufficient, but limited, as it can query the database but cannot query nor modify its structure. I explained in the development mailing-list why querying and modifying the database structure is not standard, and so is more difficult to program. This functionality will be implemented in a far future... Now, I'm looking for a nice guy that will write a mysql driver. Hullo C hackers ! Nigel ? Jean-Marc ? Are you alive ? :-) The postgresql driver functions are documented in the source, and I will answer to any question of course. It is just a matter of writing the same thing, but for mysql ! A very good help is looking into the QT mysql driver source :-) If someone wants to write the mysql driver, tell me. I will add the mysql libraries and headers auto-detection in the gambas configure script, and the needed Makefile.am file. Another point, now. I have compiled all C++ gambas files with the options -fno-exceptions. Maybe this could solve the RedHat 8.0 problem. Can a kind RedHat-8.0 user tell me if this pre-version compiles without the "_UnwindGetIP" symbol missing error ? Moreover, I added an option in the gambas IDE project. Now the gambas IDE loads its component at startup before any memory allocation. Can Mandrake users having segfault test if the IDE crashes with this version ? Thanks in advance, and waiting for comment and help ! -- Beno?t Minisini mailto:gambas at ...1... ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel From nigel at ...2... Mon Feb 17 16:04:38 2003 From: nigel at ...2... (Nigel Gerrard) Date: Mon, 17 Feb 2003 15:04:38 +0000 Subject: [Gambas-devel] Stat command Message-ID: <200302171458.20694.ngerrard@...6...> If the Stat command is passed a non-valid pathname or the file does not exist, an exception is thrown. For example in the Open Project Dialog (FSelector), if a name is entered in the project line which doesn't exist, the whole IDE crashes. Wouldn't it be better for an invalid file type to be returned for File.Type - which could then be tested? Nigel From nigel at ...2... Mon Feb 17 16:08:23 2003 From: nigel at ...2... (Nigel Gerrard) Date: Mon, 17 Feb 2003 15:08:23 +0000 Subject: [Gambas-devel] FSelector Message-ID: <200302171508.23178.nigel@...2...> In the FSelector dialogue, I notice that you are unable to traverse higher than the user HOME area (root dir for the current user) and no symbolic links appear in the list of directories. Is there a specific reason for this ? From nigel at ...2... Mon Feb 17 19:09:34 2003 From: nigel at ...2... (Nigel Gerrard) Date: Mon, 17 Feb 2003 18:09:34 +0000 Subject: [Gambas-devel] FEditor.class Message-ID: <200302171809.34171.nigel@...2...> Benoit, I see you have corrected the edtEditor_KeyPress function that was the cause for Charlies dammed click Messages in gambas-user. I would however like to suggest something like the following code in IsEndProc to cater for adding a comment after the END tag which causes the END to be missed. eg. END 'end of proc 1 ========================================================================= STATIC PUBLIC FUNCTION IsEndProc(sLine AS String) AS Boolean DIM iPos AS Integer DIM iCommentPos AS Integer sLine = UCase(Trim(sLine)) iCommentPos = Instr(sLine,"'") IF iCommentPos > 0 THEN sLine = Trim(Left$(sLine, iCommentPos - 1 )) ENDIF iPos = Instr(sLine, " ") IF iPos = 0 THEN RETURN sLine = "END" ENDIF IF Left$(sLine, iPos - 1) <> "END" THEN RETURN FALSE sLine = Mid$(sLine, iPos + 1) RETURN sLine = "PROCEDURE" OR sLine = "FUNCTION" OR sLine = "SUB" END ================================================================================ Nigel From Gambasfr at ...4... Mon Feb 17 21:54:47 2003 From: Gambasfr at ...4... (Fabien) Date: Mon, 17 Feb 2003 21:54:47 +0100 Subject: [Gambas-devel] Stat command In-Reply-To: <200302171458.20694.ngerrard@...6...> References: <200302171458.20694.ngerrard@...6...> Message-ID: <200302172154.47424.Gambasfr@...4...> Le Lundi 17 F?vrier 2003 16:04, Nigel Gerrard a ?crit : > If the Stat command is passed a non-valid pathname or the file does not > exist, an exception is thrown. > > For example in the Open Project Dialog (FSelector), if a name is entered in > the project line which doesn't exist, the whole IDE crashes. > > Wouldn't it be better for an invalid file type to be returned for File.Type > - which could then be tested? > > Nigel > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel Hello Nigel I think It's corrected in the 0.44.1.. Not error for mine. I don't understand what is the problem... Fabien From Gambasfr at ...4... Mon Feb 17 21:57:18 2003 From: Gambasfr at ...4... (Fabien) Date: Mon, 17 Feb 2003 21:57:18 +0100 Subject: [Gambas-devel] FSelector In-Reply-To: <200302171508.23178.nigel@...2...> References: <200302171508.23178.nigel@...2...> Message-ID: <200302172157.18908.Gambasfr@...4...> Le Lundi 17 F?vrier 2003 16:08, Nigel Gerrard a ?crit : > In the FSelector dialogue, I notice that you are unable to traverse higher > than the user HOME area (root dir for the current user) and no symbolic > links appear in the list of directories. > > Is there a specific reason for this ? > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel Re... :) You can change the root... if you want FSelector.Root = "/" For ex. For the symbolic links .. i will correct it. But i don't know if i can display the symbolic directories. Fabien From nigel at ...2... Mon Feb 17 23:55:49 2003 From: nigel at ...2... (Nigel GERRARD) Date: Mon, 17 Feb 2003 22:55:49 -0000 Subject: [Gambas-devel] Stat command References: <200302171458.20694.ngerrard@...6...> <200302172154.47424.Gambasfr@...4...> Message-ID: <000601c2d6d7$b8321d80$020a0a0a@...3...> Fabien, It was 0.44.1 on my Mandrake 9.0 distribution...I've just gone back and tried it again and you are right..it seems to be working..I wonder what I was doing wrong before :-). The correct english message should be "Cannot find this project" instead of "Cannot found this project"..but who am I to critise when I don't even have a second language.....:-( Anyway, I've annoyed myself now in that I can't reproduce the original error!! I'm sure I'm going to spend lots of time looking for it again. Keep working Nigel ----- Original Message ----- From: "Fabien" To: Sent: Monday, February 17, 2003 8:54 PM Subject: Re: [Gambas-devel] Stat command Le Lundi 17 F?vrier 2003 16:04, Nigel Gerrard a ?crit : > If the Stat command is passed a non-valid pathname or the file does not > exist, an exception is thrown. > > For example in the Open Project Dialog (FSelector), if a name is entered in > the project line which doesn't exist, the whole IDE crashes. > > Wouldn't it be better for an invalid file type to be returned for File.Type > - which could then be tested? > > Nigel > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel Hello Nigel I think It's corrected in the 0.44.1.. Not error for mine. I don't understand what is the problem... Fabien ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel From gambas at ...1... Tue Feb 18 22:49:21 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Tue, 18 Feb 2003 22:49:21 +0100 Subject: [Gambas-devel] FEditor.class In-Reply-To: <200302171809.34171.nigel@...2...> References: <200302171809.34171.nigel@...2...> Message-ID: <200302182249.21411.gambas@...1...> Le Lundi 17 F?vrier 2003 19:09, Nigel Gerrard a ?crit : > Benoit, > > I see you have corrected the edtEditor_KeyPress function that was the cause > for Charlies dammed click Messages in gambas-user. I would however like to > suggest something like the following code in IsEndProc to cater for adding > a comment after the END tag which causes the END to be missed. > eg. END 'end of proc 1 > > ========================================================================= > STATIC PUBLIC FUNCTION IsEndProc(sLine AS String) AS Boolean > > DIM iPos AS Integer > DIM iCommentPos AS Integer > > sLine = UCase(Trim(sLine)) > iCommentPos = Instr(sLine,"'") > IF iCommentPos > 0 THEN > sLine = Trim(Left$(sLine, iCommentPos - 1 )) > ENDIF > > iPos = Instr(sLine, " ") > IF iPos = 0 THEN > RETURN sLine = "END" > ENDIF > > > IF Left$(sLine, iPos - 1) <> "END" THEN RETURN FALSE > > sLine = Mid$(sLine, iPos + 1) > > RETURN sLine = "PROCEDURE" OR sLine = "FUNCTION" OR sLine = "SUB" > > END > > =========================================================================== >===== > > Nigel > > Thanks Nigel, I will add it ! -- Beno?t Minisini mailto:gambas at ...1... From nigel at ...2... Wed Feb 19 14:34:46 2003 From: nigel at ...2... (Nigel GERRARD) Date: Wed, 19 Feb 2003 13:34:46 -0000 Subject: [Gambas-devel] Stat command References: <200302171458.20694.ngerrard@...6...> <200302172154.47424.Gambasfr@...4...> <000601c2d6d7$b8321d80$020a0a0a@...3...> Message-ID: <000e01c2d81c$58608680$020a0a0a@...3...> Fabien, I now am able to reproduce the error and it's on the new project selection!! Select new project and then be a blind idiot (just like me) and try and type the new project name into the Directory field at the bottom...BANG. FSelector.Validate.483: #45: File or directory does not exist:/path/to/file. I'm also not quite sure what the directory line gives you since it is visible from Look into. Nigel ----- Original Message ----- From: "Nigel GERRARD" To: Sent: Monday, February 17, 2003 10:55 PM Subject: Re: [Gambas-devel] Stat command > Fabien, > > It was 0.44.1 on my Mandrake 9.0 distribution...I've just gone back and > tried it again and you are right..it seems to be working..I wonder what I > was doing wrong before :-). > > The correct english message should be "Cannot find this project" instead of > "Cannot found this project"..but who am I to critise when I don't even have > a second language.....:-( > > Anyway, I've annoyed myself now in that I can't reproduce the original > error!! I'm sure I'm going to spend lots of time looking for it again. > > Keep working > > Nigel > ----- Original Message ----- > From: "Fabien" > To: > Sent: Monday, February 17, 2003 8:54 PM > Subject: Re: [Gambas-devel] Stat command > > > Le Lundi 17 F?vrier 2003 16:04, Nigel Gerrard a ?crit : > > If the Stat command is passed a non-valid pathname or the file does not > > exist, an exception is thrown. > > > > For example in the Open Project Dialog (FSelector), if a name is entered > in > > the project line which doesn't exist, the whole IDE crashes. > > > > Wouldn't it be better for an invalid file type to be returned for > File.Type > > - which could then be tested? > > > > Nigel > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Gambas-devel mailing list > > Gambas-devel at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-devel > > Hello Nigel > > I think It's corrected in the 0.44.1.. Not error for mine. > > I don't understand what is the problem... > > Fabien > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > From Gambasfr at ...4... Wed Feb 19 22:05:44 2003 From: Gambasfr at ...4... (Fabien) Date: Wed, 19 Feb 2003 22:05:44 +0100 Subject: [Gambas-devel] Stat command In-Reply-To: <000e01c2d81c$58608680$020a0a0a@...3...> References: <200302171458.20694.ngerrard@...6...> <000601c2d6d7$b8321d80$020a0a0a@...3...> <000e01c2d81c$58608680$020a0a0a@...3...> Message-ID: <200302192205.44050.Gambasfr@...4...> hello all , hello Nigel Scuse me for my forget... Change the function Validate in FSelector by : '********************** PUBLIC FUNCTION Validate() AS Boolean DIM sFile AS String 'Validation IF txtFile.Text = "" THEN RETURN sFile = txtFile.Text SELECT CASE iDialogType CASE SELECT_PROJECT IF File.Name(Root) = sFile THEN sFile = "" IF Exist(Root &/ sFile &/ ".project") THEN Path = Root &/ sFile GOTO GOOD '$BM ENDIF Message.Error("Cannot found this project") CASE SELECT_DIRECTORY IF Exist(Root &/ sFile) THEN IF File.Name(Root) = sFile THEN sFile = "" Stat(Root &/ sFile) IF File.Type = gb.Directory THEN Path = Root &/ sFile GOTO GOOD '$BM ENDIF ENDIF Message.Error("Cannot found this directory") CASE SELECT_FILE, SELECT_IMAGE IF bAllowNewFile THEN Path = Root &/ sFile GOTO GOOD ENDIF IF Exist(Root &/ sFile) THEN Path = Root &/ sFile GOTO GOOD ENDIF Message.Error("Cannot found this file") '$BM END SELECT RETURN GOOD: '$BM IF Key THEN IF iDialogType = SELECT_FILE OR iDialogType = SELECT_IMAGE THEN Project.Config.Write(Key, File.Dir(Path)) ELSE Project.Config.Write(Key, Path) ENDIF ENDIF RETURN TRUE END '*************************** Fabien PS to benoit ...change it please!! From gambas at ...1... Thu Feb 20 21:47:02 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Thu, 20 Feb 2003 21:47:02 +0100 Subject: [Gambas-devel] FEditor.class In-Reply-To: <200302171809.34171.nigel@...2...> References: <200302171809.34171.nigel@...2...> Message-ID: <200302202147.02450.gambas@...1...> Le Lundi 17 F?vrier 2003 19:09, Nigel Gerrard a ?crit : > Benoit, > > I see you have corrected the edtEditor_KeyPress function that was the cause > for Charlies dammed click Messages in gambas-user. I would however like to > suggest something like the following code in IsEndProc to cater for adding > a comment after the END tag which causes the END to be missed. > eg. END 'end of proc 1 > > ... > > Nigel > Thanks, I added your fix. -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Fri Feb 21 11:37:42 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 21 Feb 2003 11:37:42 +0100 Subject: [Gambas-devel] Stat command In-Reply-To: <200302192205.44050.Gambasfr@...4...> References: <200302171458.20694.ngerrard@...6...> <000e01c2d81c$58608680$020a0a0a@...3...> <200302192205.44050.Gambasfr@...4...> Message-ID: <200302211137.42183.gambas@...1...> Le Mercredi 19 F?vrier 2003 22:05, Fabien a ?crit : > hello all , hello Nigel > > Scuse me for my forget... > > Change the function Validate in FSelector by : > ... OK, it's done. NOTE FOR EVERYBODY: When you send little patches, you should do the following : 1) Send me the entire file, by telling me "this is the FFF file modified from the X.XX version of Gambas" OR 2) Use the diff command. Let's suppose you have the two directories: - ~/gambas-X.XX the original source package directory - ~/mygambas the modified package directory Just do: diff -rb ~/gambas-X.XX ~/mygambas > gambas-X.XX.diff And send me the diff file. With that, I can see what you have modified exactly, and can easily merge your modifications with mine. Regards, -- Beno?t Minisini mailto:gambas at ...1... From Gambasfr at ...4... Tue Feb 25 21:48:05 2003 From: Gambasfr at ...4... (Fabien) Date: Tue, 25 Feb 2003 21:48:05 +0100 Subject: [Gambas-devel] Stat command In-Reply-To: <200302171458.20694.ngerrard@...6...> References: <200302171458.20694.ngerrard@...6...> Message-ID: <200302252148.05757.Gambasfr@...4...> hi benoit I've tested the kde component it's great and the gb.db is very interesting. but ... some one who speak a good english must to document it (in the component explorer at less). because there is some command that i don't know the finallity. Actually, i work on a alcool stock program.. for my work since 1998 and i want to translate it on gb but i must to understand the gb.db better. Fabien From yizhou at ...143... Tue Feb 11 12:25:52 2003 From: yizhou at ...143... (yizhou) Date: Tue, 11 Feb 2003 03:25:52 -0800 Subject: [Gambas-devel] Can I clone and translate the gambas website include wiki In-Reply-To: <20050103135425.19487FD5E@...204...> Message-ID: <200501032014.j03KEQou019167@...203...> Since many Chinese people need Chinese version manual and website, I want to translate the gambas website and wiki into Simplified Chinese, How can I do that? I mean how can I get the best English version?Do I have to have my own web space or I can just send translated file to the maillist? Or you can give me a ftp folder to upload? By the way, the domain name gbasic.com is remain unregisted, do you guys interested? Yizhou He