Re: [Gambas-user] import mysql dump EXEC or SHELL?

2008-12-16 Thread wig
wig wrote: Although I can create table by table from within Gambas with hCon.Databases.Add(sDbName), I wondered if there is a way to import a mysql dump file, so that I can create the tables with data (in one command). Untill now I allways used phpMyAdmin dump/export and import for creating

[Gambas-user] parent of current item

2008-12-16 Thread Wally
How to get the parent of the current item in treeview ? (the key's are populated by random numbers) regs wally -- SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't

Re: [Gambas-user] parent of current item

2008-12-16 Thread M0E Lnx
If you do not provide a Key, gambas will assign one, but you can provide one as a string. Like this Prep -Prep0 -Prep1 Inst -Inst0 -Inst1 Conf -Conf0 -Conf1 On Tue, Dec 16, 2008 at 11:11 AM, Wally wa...@voosen.eu wrote: How to get the parent of the current item in treeview ?

Re: [Gambas-user] Byte I/O to serial port

2008-12-16 Thread Al Williams
-- SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at

Re: [Gambas-user] import mysql dump EXEC or SHELL?

2008-12-16 Thread Doriano Blengino
Ron_1st ha scritto: On Tuesday 16 December 2008, wig wrote: sImport =Application.Path /mytables.sql EXEC [mysql, sUser, sPassword, sHost, sDatabase, sImport] sImport = sSqlFile = Application.Path /mytables.sql EXEC [mysql, sUser, sPassword, sHost, sDatabase,

Re: [Gambas-user] parent of current item

2008-12-16 Thread Doriano Blengino
Wally ha scritto: How to get the parent of the current item in treeview ? (the key's are populated by random numbers) regs wally -- SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The

[Gambas-user] Drag Drop to KDE Desktop

2008-12-16 Thread Doriano Blengino
Hi list, how can I implement dragdrop with the desktop? I mean, drag an item (a filename, for example) to an icon on the desktop, and viceversa, a file from a file manager to a running gambas application? Regards, -- Doriano Blengino Listen twice before you speak. This is why we have two

Re: [Gambas-user] parent of current item

2008-12-16 Thread Wally
On Tue December 16 2008 21:12:54 Doriano Blengino wrote: Wally ha scritto: How to get the parent of the current item in treeview ? (the key's are populated by random numbers) regs wally - - SF.Net email is

[Gambas-user] SQLite and INT4 vs. INTEGER

2008-12-16 Thread moon_walker
Hi Benoit, i am developing a cross platform application. The linux side is on GAMBAS and the Win side is on C#.NET. The common part is the SQLite database. There is some foreign relations which are coupled with comboboxes. So the child table has some foreign key fields joined to parent primary

Re: [Gambas-user] Drag Drop to KDE Desktop

2008-12-16 Thread M0E Lnx
AFAIK, such a feature doesn't exist yet... I remember asking about it some time ago. At least not in 2.x On Tue, Dec 16, 2008 at 2:15 PM, Doriano Blengino doriano.bleng...@fastwebnet.it wrote: Hi list, how can I implement dragdrop with the desktop? I mean, drag an item (a filename, for

Re: [Gambas-user] Gambas3 compilation problem

2008-12-16 Thread Jussi Lahtinen
Hi! I must rise this again, it is still problem... ideas? Anyone? I tried it again with revision 1740, and same problem. Do I need to install something from somewhere..? Thanks! Jussi On Wed, Dec 10, 2008 at 7:50 PM, Jussi Lahtinen jussi.lahti...@gmail.com wrote: Hi! I'm on Ubuntu 8.10 64

Re: [Gambas-user] Gambas3 compilation problem

2008-12-16 Thread Benoit Minisini
On mardi 16 décembre 2008, Jussi Lahtinen wrote: Hi! I must rise this again, it is still problem... ideas? Anyone? I tried it again with revision 1740, and same problem. Do I need to install something from somewhere..? Thanks! Jussi As briefly explained on the wiki, on the Ubuntu page,

Re: [Gambas-user] import mysql dump EXEC or SHELL?

2008-12-16 Thread Ron_1st
On Tuesday 16 December 2008, Doriano Blengino wrote: Ron_1st ha scritto: On Tuesday 16 December 2008, wig wrote: sImport =Application.Path /mytables.sql EXEC [mysql, sUser, sPassword, sHost, sDatabase, sImport] sImport = sSqlFile = Application.Path

Re: [Gambas-user] import mysql dump EXEC or SHELL?

2008-12-16 Thread Doriano Blengino
Ron_1st ha scritto: On Tuesday 16 December 2008, Doriano Blengino wrote: Ron_1st ha scritto: On Tuesday 16 December 2008, wig wrote: sImport =Application.Path /mytables.sql EXEC [mysql, sUser, sPassword, sHost, sDatabase, sImport] sImport =

Re: [Gambas-user] Drag Drop to KDE Desktop

2008-12-16 Thread Doriano Blengino
M0E Lnx ha scritto: AFAIK, such a feature doesn't exist yet... I remember asking about it some time ago. At least not in 2.x On Tue, Dec 16, 2008 at 2:15 PM, Doriano Blengino doriano.bleng...@fastwebnet.it wrote: Hi list, how can I implement dragdrop with the desktop? I mean, drag

Re: [Gambas-user] Drag Drop to KDE Desktop

2008-12-16 Thread Fabien Bodard
it's not a gambas ability the problem is to give the good data format ' Gambas class file PUBLIC SUB _new() END PUBLIC SUB Form_Open() ListBox1.Add(Application.Path / FMain.form) END PUBLIC SUB ListBox1_Drag() END PUBLIC SUB ListBox1_Drop() END PUBLIC SUB Form_Drop()