M mramos Member Licensed User Longtime User Jan 24, 2011 #1 How to I exit my program? I have an exit button, can I just do a return? Last edited: Jan 24, 2011
M mramos Member Licensed User Longtime User Jan 24, 2011 #2 Here is the program. If there is an expert that can lookup at it and tell me what I am doing wrong. It is not a large program. Attachments geoloc.zip 8.2 KB · Views: 272 Upvote 0
Here is the program. If there is an expert that can lookup at it and tell me what I am doing wrong. It is not a large program.
lawboy Member Licensed User Longtime User Jan 24, 2011 #3 Hi, Change B4X: Sub Exit_Click Activity.Finish End Sub To B4X: Sub ExitButton_Click Activity.Finish End Sub As the button's name is "ExitButton" and is not being called with just exit_click sub. -Lawboy Upvote 0
Hi, Change B4X: Sub Exit_Click Activity.Finish End Sub To B4X: Sub ExitButton_Click Activity.Finish End Sub As the button's name is "ExitButton" and is not being called with just exit_click sub. -Lawboy
M mramos Member Licensed User Longtime User Jan 24, 2011 #4 Thanks Lawboy, Guess I stared at it too long. It is all new to me. Did you try the program out? Upvote 0