Re: [Gambas-user] method $load , any wiki for explain it ?

2016-06-05 Thread Benoît Minisini
Le 05/06/2016 12:10, zainudin ahmad a écrit : > $load is used , there is any other method has declared and wiki for explain > it ? $load() is the undocumented method of a form that is called by the _new() method to create its contents. It is undocumented because it's an implementation detail tha

Re: [Gambas-user] method $load , any wiki for explain it ?

2016-06-05 Thread T Lee Davidson
On 06/05/2016 04:55 PM, zainudin ahmad wrote: > the project contain Main form (without any code). I get the result : > > > Compiling Main.class... > Inherits Form > > > Private Sub {$load}() << (what I mean) > >With

Re: [Gambas-user] method $load , any wiki for explain it ?

2016-06-05 Thread Tobias Boege
On Mon, 06 Jun 2016, zainudin ahmad wrote: > > Is this what you are looking for? > > No > > doing : $ gbc3 -v /tmp/test > > the project contain Main form (without any code). I get the result : > > > Compiling Main.class...

Re: [Gambas-user] method $load , any wiki for explain it ?

2016-06-05 Thread zainudin ahmad
> Is this what you are looking for? No doing : $ gbc3 -v /tmp/test the project contain Main form (without any code). I get the result : Compiling Main.class... Inherits Form Private Sub {$load}() << (what I mean)

Re: [Gambas-user] method $load , any wiki for explain it ?

2016-06-05 Thread T Lee Davidson
On 06/05/2016 06:10 AM, zainudin ahmad wrote: > $load is used , there is any other method has declared and wiki for explain > it ? Is this what you are looking for? http://gambaswiki.org/wiki/comp/gb/file/load -- Lee __ "Artificial Intelligence is no match for natural stupidity."

[Gambas-user] method $load , any wiki for explain it ?

2016-06-05 Thread zainudin ahmad
$load is used , there is any other method has declared and wiki for explain it ? -- What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patterns at an interface-level. Reveals which users, apps, and

Re: [Gambas-user] [Gambas Bug Tracker] Bug #926: want to edit a record, it's change the other record

2016-06-05 Thread zainudin ahmad
The result (still only one field for Primary Key) : gb.db.sqlite3: 0x958f33c: PRAGMA table_info('test2') Primary Key : id2 gb.db.sqlite3: 0x958f33c: SELECT "id2" FROM "test2" ORDER BY "id2" LIMIT 256 gb.db.sqlite3: 0x958f33c: SELECT * FROM "test2" ORDER BY "id2" LIMIT 256 I think I should try wit

Re: [Gambas-user] [Gambas Bug Tracker] Bug #926: want to edit a record, it's change the other record

2016-06-05 Thread Jorge Carrión
Ok. I think that the problem is in the definition of the test table. If you try to update a row in your table you got an error about primary key. Try to add a "without rowid" in creation of table, like this: CREATE TABLE "test2" ( "id" INT4 NOT NULL , "id2" INT4 NOT NULL , "fruit" TEXT, PRIMARY K