Trouble with GUI

SlavaVB

Member
Licensed User
Longtime User
Having trouble with GUI... I used the designer to make a spinner (with wysiwyg) but for some reason when i run the app it comes up with a blank screen. any suggestions?

Thanks.

B4X:
'Activity module
Sub Process_Globals
   'These global variables will be declared once when the application starts.
   'These variables can be accessed from all modules.

End Sub

Sub Globals
   'These global variables will be redeclared each time the activity is created.
   'These variables can only be accessed from this module.

   Dim Spinner1 As Spinner
End Sub

Sub Activity_Create(FirstTime As Boolean)

End Sub

Sub Activity_Resume

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub



Sub Spinner1_ItemClick (Position As Int, Value As Object)
   
End Sub
 
Top