Just started B4A programming and I'm still lost... :sign0085:
- SET TIME: what is the instruction to set the device time?
- TABLES ? is there any view similar to B4PPC Table to show/edit 'n' values?
- SPINNER: sample code please? I cannot make it work whit this...
When I run it, there is no list in the combo.
thanks in advance
- SET TIME: what is the instruction to set the device time?
- TABLES ? is there any view similar to B4PPC Table to show/edit 'n' values?
- SPINNER: sample code please? I cannot make it work whit this...
B4X:
Sub Globals
Dim myList(99) as string
Dim mySel as Spinner
End Sub
myList(1) = "item1"
myList(2) = "item2"
myList(3) = "item3"
mySel.Initialize("mySel") ' (I don't understand EventName parameter here)
mySel.AddAll(myList)
When I run it, there is no list in the combo.
thanks in advance