Hi all
When I debug and run a application, then when I go with the cursor over the List-name because I like to see what is in there, Debug stops running
List is initialize and not empty.
I see this in many applications so it is not only 1 application.
Maybe a small bug.
Hm but I don't use b4xpage because it is a Non-UI app just console.
There has to be something wrong create a new app and no crash
No List crash:
'Non-UI application (console / server application)
#Region Project Attributes
#CommandLineArgs:
#MergeLibraries: True
#End Region
Sub Process_Globals
End Sub
Sub AppStart (Args() As String)
TestCrash
StartMessageLoop
End Sub
Private Sub TestCrash
Dim AudioList As List
AudioList.Initialize 'No Crash
Log("Hello world!!!")
End Sub