Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private xui As XUI
Private sp As X2SoundPool
End Sub
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.RootPanel.LoadLayout("Page1")
NavControl.ShowPage(Page1)
sp.Initialize
sp.AddSound("106",File.DirAssets,"106.mp3")
End Sub
Sub Button1_Click
xui.MsgboxAsync("Hello world!", "B4X")
sp.PlaySound2("106",1)
End Sub
Private Sub Page1_Resize(Width As Int, Height As Int)
End Sub