[Gambas-user] Form Action & Method (GET/POST) properties ?

2017-01-16 Thread Vinode Singh Ujlain
At the outset , pardon me for asking some very elementary questions. (a) How / where do I specify a webform's action (URL) & method (GET/POST) properties ?(b) How do I navigate away from webform1 --> webpage1 when submit button on webform1 is pressed ?skeleton sample (login form) placed at attachme

Re: [Gambas-user] SQLite - in memory DB

2016-07-26 Thread Vinode Singh Ujlain
I am able to attach a file based SQLite database to in-memory DB and copy entire database (all tables sequentially using create table + select * from..) into in-memory DB.How do I do the reverse ? i.e dump in-memory DB onto a file based sqlite DB by attaching the memory based DB to file based DB ?

[Gambas-user] SQLite - in memory DB

2016-06-19 Thread Vinode Singh Ujlain
Public conH As New Connection conH.Type = "sqlite3" conH.name = ":memory:" Try conH.Open() If Error Then Print "Unable to open database \n Error :"; Error.Text Error I am getting is :- /Unable to open database // //Error : Unable to locate database `:memory:` in ``/ conH.name

[Gambas-user] Audio tone generator using sdl2.audio

2016-02-07 Thread Vinode Singh Ujlain
internals provide some pointers so that I could complete this simple application ? Any other approach i.e not using sdl possible ?? Regards Vinode Singh Ujlain AudioToneGenerator.tar.gz Description: GNU Zip compressed data