B4i (iOS) - Updates thread

abhishek007p

Active Member
Licensed User
Longtime User
Few questions.

Q: Can I purchase B4i together with B4A?
A: Yes. You can purchase B4A Enterprise + B4i + hosted Mac builder service for $189:

1. Does this combo offer include 2 Years of update to B4A + B4I ? the paypal page says 1 Year.

2. Can Two developer share the mac builder service or each developer need to purchase their own service ?

3. When the 1 Year mac builder service expires, how much it will cost for Mac Builder service per year ?
 

davepamn

Active Member
Licensed User
Longtime User
B4X:
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

The Code works great.
 
Top