Hi,
Basic4Android brought me back to programming since the C64/Amiga days!
Great and Handy
My question is about user type, can I do this:
Type XX(A as int, B as Button, C as String)
Dim YY(10) as XX
YY(0)=(1,Button1,Test)
OR
- I can not use views inside array/user type
- and I have to do it like this
YY(0).A = 1
YY(0).B= Button1
YY(0).C = "Test"
Thank you
Basic4Android brought me back to programming since the C64/Amiga days!
Great and Handy
My question is about user type, can I do this:
Type XX(A as int, B as Button, C as String)
Dim YY(10) as XX
YY(0)=(1,Button1,Test)
OR
- I can not use views inside array/user type
- and I have to do it like this
YY(0).A = 1
YY(0).B= Button1
YY(0).C = "Test"
Thank you