[Gambas-user] how to convert VB Project file to Gambas

2013-12-12 Thread //SCLPL/ Sudeep Damodar
Hi, This is sudeep.im going to learn Gambas. I familiar with vb programming.i dnt have any idea about Gambas.so i have vb6 project .so i have to know about how to directly convert vb6 project to Gambas.can you have any option like this in Gambas .please touch with me Thanks N Regards Sudeep

Re: [Gambas-user] How do you deal with multiple objects (Textboxes)

2013-12-12 Thread richard terry
On 13/12/13 09:30, Charlie wrote: > Hi,I want to clear multiple *Textboxes* and using the following code seems > inefficient: -*Textbox1.text = ""Textbox2.text = ""Textbox3..*Is there a > better way?I have looked at "Collections" and "For Each" commands but I > can't work out if this is the cor

[Gambas-user] How do you deal with multiple objects (Textboxes)

2013-12-12 Thread Charlie
Hi,I want to clear multiple *Textboxes* and using the following code seems inefficient: -*Textbox1.text = ""Textbox2.text = ""Textbox3..*Is there a better way?I have looked at "Collections" and "For Each" commands but I can't work out if this is the correct method.Thanks for any help.Charlie.

Re: [Gambas-user] Popup menu in project tree

2013-12-12 Thread Jesus
El 12/12/13 00:50, Benoît Minisini escribió: > Le 12/12/2013 00:17, Tobias Boege a écrit : >> On Wed, 11 Dec 2013, Jesus wrote: >>> El 09/12/13 22:38, Jesus escribi?: Hi all When I right click over an item in the project tree, say "Data" folder, there's not a full menu, so I can

[Gambas-user] Blob type and segmentation error

2013-12-12 Thread bill-lancaster
Benoît, BlobTest-0.0.1.tmp.tar.gz and some mysql BackUpOfBlobTest.sql Hope this is OK. -- View this message in context: http://gambas.8142.n7.nabble.c

Re: [Gambas-user] Blob type and segmentation error

2013-12-12 Thread Benoît Minisini
Le 12/12/2013 10:56, bill-lancaster a écrit : > Thank you Tobias and sorry Benoit. > > Here is a small programme:- > > > Public hConn As New Connection > Public hResult As Result > > Public Sub _new() > With hConn >.Type = "MySQL" >.Host = "localhost" >.Log

[Gambas-user] Blob type and segmentation error

2013-12-12 Thread bill-lancaster
This may be significant, the mysql db was created using MySQL Workbench and field (column) MsgBlob is set as data type LONGBLOB -- View this message in context: http://gambas.8142.n7.nabble.com/Blob-type-and-segmentation-error-tp44631p44642.html Sent from the gambas-user mailing list archive at

[Gambas-user] Blob type and segmentation error

2013-12-12 Thread bill-lancaster
Thank you Tobias and sorry Benoit. Here is a small programme:- Public hConn As New Connection Public hResult As Result Public Sub _new() With hConn .Type = "MySQL" .Host = "localhost" .Login = "root" .Port = "3306" .Name = "xxx"