Hello,
Very new to B4ppc and having some difficulty from a desktop app...
With this code taken from the help file:
I'm getting an error that I don't understand. (Image attached)
Can someone shed some light here or have some working code as a simple example?
Very new to B4ppc and having some difficulty from a desktop app...
With this code taken from the help file:
B4X:
'Add a TabControl object named tbc.
Sub Globals
End Sub
Sub App_Start
Form1.Show
AddButton(Form1,"Button1",0,0,80,40,"Button1")
AddTextBox (Form1,"TextBox1",40,20,100,25,"")
tbc.New1 ("Form1", 10,10, 200, 200)
tbc.AddTabPage("Page1")
tbc.AddTabPage("Page2")
tbc.AddTabPage("Page3")
tbc.AddControl("Button1",0,20,20)
tbc.AddControl("TextBox1",1,20,30)
End Sub
Sub tbc_SelectionChanged
msgbox("Selected page: " & tbc.SelectedIndex)
End Sub
I'm getting an error that I don't understand. (Image attached)
Can someone shed some light here or have some working code as a simple example?