Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim MyFade As SplashFade
Dim Exitcmnd As Button
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
Activity.LoadLayout("Start")
splash
changelayout
End Sub
Sub Activity_Resume
End Sub
Sub changelayout
Activity.LoadLayout("Main_Bidding")
End Sub
Sub splash
MyFade.Initialize(Activity, Me, "BridgeImagesmall.bmp", Gravity.CENTER, 3000, 200, "Left", False)
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Exitcmnd_Click
ExitApplication
End Sub