Hello
I have just started working on Basic4Android and I have (many questions), particularly I haven't yet found a system for passing activity to a module, e.g. this is not working:
Dim act As Activity
dataParams = "Title,,25,T,%chart %date;" _
& "Border,,10,B,Start;" _
& "Type,Graphic Type,10,T,Line,Bubble|Delta|Line;" _
& "Graph,,10,T;" _
& "psw,Password,10,P"
act = Activity.LoadLayout("main")
formhandler.prova(act)
...
Sub prova(act As Activity)
Dim btn As Button
btn.Initialize("butun")
btn.Text = "butun"
act.AddView(btn,0,0,100,100)
End Sub
Besids I have another question, i.e. I would handle events in order tu create a function wich build a form an return data when one click on button.
Thanks for suggestions
John Rossati
I have just started working on Basic4Android and I have (many questions), particularly I haven't yet found a system for passing activity to a module, e.g. this is not working:
Dim act As Activity
dataParams = "Title,,25,T,%chart %date;" _
& "Border,,10,B,Start;" _
& "Type,Graphic Type,10,T,Line,Bubble|Delta|Line;" _
& "Graph,,10,T;" _
& "psw,Password,10,P"
act = Activity.LoadLayout("main")
formhandler.prova(act)
...
Sub prova(act As Activity)
Dim btn As Button
btn.Initialize("butun")
btn.Text = "butun"
act.AddView(btn,0,0,100,100)
End Sub
Besids I have another question, i.e. I would handle events in order tu create a function wich build a form an return data when one click on button.
Thanks for suggestions
John Rossati