1. It includes two years of free upgrades and hosted Mac builder service for one year.
2. The Mac builder service is for one specific developer.
3. Currently the service is sold for $26. It might change in the future. However it will continue to be relatively low cost.
Sub Process_Globals
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private lblOutput As Label
End Sub
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Button"
Page1.RootPanel.Color = Colors.green
NavControl.ShowPage(Page1)
Page1.RootPanel.LoadLayout("frmMain")
End Sub
Sub cmdPressMe_Click
lblOutput.text="Hello World"
End Sub