In-discriminant Closing

Nyptop

Active Member
Licensed User
Longtime User
Hi there,

Strange question. With the program attached in the link I simply get 'fatal error' whenever I the listview activity runs. I have know idea why. All it says in the logs is 'Fatal error'.

Could anyone have a look and see if they get a similar problem/ offer an explanation.

Here it is:

http://dl.dropbox.com/u/93967386/keeva.zip

And attached is a screen shot of my logs.

Thanks,

Neil
 

Attachments

  • logs.png
    logs.png
    43.4 KB · Views: 218

klaus

Expert
Licensed User
Longtime User
I had a look at your program.
To remove the error I needed to comment in Main in button2_click
B4X:
    StartActivity("Listview")
'    SetAnimation("push_left_in", "push_left_in")
    Else
And in Listview move Timer1.Initialize from Process_Globals to Activity_Create
B4X:
    If FirstTime = True Then
        parser.Initialize
        Timer1.Initialize("Timer1",0)
    End If
I couldnt test much the program says no location found.

Best regards.
 
Upvote 0
Top