HI Guys,
First a very good Christmas for all.
Second,
I am anyway, started dBase , but comes on the next problem.
I have a visit.db
Table name favo
with columns Mapnaam, pic , keuze , wijk
I want to search with a "text" in the keuze column and store the Mapnaam, pic and wijk in a variable
For now I have this code, but it is not working, I have tried with 1 first
Dim cur As Cursor
Dim m As Map
Dim Name As String
m.Initialize
SQL.Initialize(File.DirRootExternal, "visit.db", False)
cur = SQL.ExecQuery("SELECT pic FROM favo")
cur.Position = 2
Name = m.Get("pic")
Msgbox(Name ,"this is m ?")
Me :sign0104:
First a very good Christmas for all.
Second,
I am anyway, started dBase , but comes on the next problem.
I have a visit.db
Table name favo
with columns Mapnaam, pic , keuze , wijk
I want to search with a "text" in the keuze column and store the Mapnaam, pic and wijk in a variable
For now I have this code, but it is not working, I have tried with 1 first
Dim cur As Cursor
Dim m As Map
Dim Name As String
m.Initialize
SQL.Initialize(File.DirRootExternal, "visit.db", False)
cur = SQL.ExecQuery("SELECT pic FROM favo")
cur.Position = 2
Name = m.Get("pic")
Msgbox(Name ,"this is m ?")
Me :sign0104:
Last edited: