[Gambas-user] gambas exe use in android phone

2017-10-20 Thread Unaise EK
how can i work gambas exe file in android flatform (android mobile phones) -- M. Unaise. E.K 9895687604 Librarian, (BLISc, MLIS) JDT Islam Polytechnic College, Vellimadukunnu. Sent with Mailtrack

Re: [Gambas-user] search over the gridview and not to the database and refill grid its possible?

2017-06-18 Thread Unaise EK
Is there any substitute for flexgrid in VB for gambas. On 18 Jun 2017 11:26 a.m., "PICCORO McKAY Lenz" wrote: > as subject said: search over the gridview event to the database and refill > grid its possible? > > i have a gridview object filled with data from the db, note: column names > are auto

Re: [Gambas-user] gambas 3 and mysql

2017-06-14 Thread Unaise EK
14 Jun 2017 4:01 p.m., "Tobias Boege" wrote: On Wed, 14 Jun 2017, Unaise EK wrote: > hai, > i worte these code for storing data into mysql database, all data stored > into database except date_ad. > > > Public Sub Save_button_Click() > Dim InsertDb As String > 'Di

[Gambas-user] gambas 3 and mysql

2017-06-13 Thread Unaise EK
hai, i worte these code for storing data into mysql database, all data stored into database except date_ad. Public Sub Save_button_Click() Dim InsertDb As String 'Dim Dx As Date 'Format(Dx, "dd/mm/") InsertDb = "INSERT INTO name_tbl (adm, name, place, date_ad) VALUES ('" & (TextBox1.Text) & "

Re: [Gambas-user] Change the code and copy in other project

2017-05-26 Thread Unaise EK
Sir, when i type "Select * from NameTbl where Adm = '" & textbox1.tex &"';" this query not working, then i changed it to "Select Name, Adm, Place from NameTbl where Adm ='"& textbox1.tex &"';" this query is working. so how can i write * from query in gambas 3 pls help

Re: [Gambas-user] How to enumerate through SQL Result (was Re: Gambas-user Digest, Vol 132, Issue 29)

2017-05-25 Thread Unaise EK
able ListBox1.Add(Lresult!"name") Lresult.MoveNext wend 'Endif On 25 May 2017 9:06 p.m., "T Lee Davidson" wrote: > On 05/25/2017 05:24 AM, Unaise EK wrote: > > this is my code for displaying data in listbox, but it did not working, > pls > &g

Re: [Gambas-user] when i used collections on my code, gambas get hangs!

2017-05-25 Thread Unaise EK
TextBox2.Text) & "', '" & (TextBox3.Text) & "', '" & DateBox1.Value & "' )" MODMain.MyConn.Exec(InsertDb) message("Data saved") clear1 'Form2.Show End <https://mailtrack.io/> Sent with Mailtrack <https://

Re: [Gambas-user] when i used collections on my code, gambas get hangs!

2017-05-25 Thread Unaise EK
TextBox2.Text) & "', '" & (TextBox3.Text) & "', '" & DateBox1.Value & "' )" MODMain.MyConn.Exec(InsertDb) message("Data saved") clear1 'Form2.Show date value not seen in database. it shows blank End On Thu, May

Re: [Gambas-user] when i used collections on my code, gambas get hangs!

2017-05-25 Thread Unaise EK
y) > 'If Lresult.Count > 0 Then > '* Do While Not Eof(Lresult)* > while Lresult.available > ListBox1.Add(Lresult!"name") > Lresult.MoveNext > wend > 'Endif > > End > > 2017-05-25 11:29 GMT+02:00 Unaise EK : &g

Re: [Gambas-user] when i used collections on my code, gambas get hangs!

2017-05-25 Thread Unaise EK
While Not Eof(Lresult)* ListBox1.Add(Lresult!"name") Lresult.MoveNext Loop Endif End <https://mailtrack.io/> Sent with Mailtrack <https://mailtrack.io/install?source=signature&lang=en&referral=unais...@gmail.com&idSignature=22> On Thu, May 25

Re: [Gambas-user] Gambas-user Digest, Vol 132, Issue 29

2017-05-25 Thread Unaise EK
this is my code for displaying data in listbox, but it did not working, pls help Public Procedure AddList() Dim ListQurey As String Dim Lresult As Result ListQurey = "SELECT name FROM name_tbl" Lresult = MODMain.MyConn.Exec(ListQurey) If Lresult.Count > 0 Then * Do While Not Eof(Lres

Re: [Gambas-user] when i used collections on my code, gambas get hangs!

2017-05-25 Thread Unaise EK
can you give example for DO WHILE NOT database EOF Loop Sent with Mailtrack On Thu, May 25, 2017 at 8:30 AM, PICCORO McKAY Lenz wrote: > there are the piece of code a