This is a major problem for my app, any chance of a NativeObject workaround if a quick fix is not possible?
I have attached a simple little example which when you attempt to compile it in debug mode produces this error message from the remote compiler:
I have attached a simple little example which when you attempt to compile it in debug mode produces this error message from the remote compiler:
B4X:
'Code module
#Region Project Attributes
#ApplicationLabel: B4i Example
#Version: 1.0.0
'Orientation possible values: Portrait, LandscapeLeft, LandscapeRight and PortraitUpsideDown
#iPhoneOrientations: Portrait, LandscapeLeft, LandscapeRight
#iPadOrientations: Portrait, LandscapeLeft, LandscapeRight, PortraitUpsideDown
#End Region
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 Textview1 As TextView
End Sub
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Page 1"
Page1.RootPanel.Color = Colors.White
NavControl.ShowPage(Page1)
End Sub
Private Sub Page1_Resize(Width As Int, Height As Int)
Textview1.Initialize("")
Page1.RootPanel.AddView(Textview1, 0, 0, 200, 200)
Textview1.Text = "rubbish and gunk"
Dim x As Int
x = 3
Textview1.SelectionStart = x
End Sub
Private Sub Application_Background
End Sub
Attachments
Last edited: