I'm just getting to saving program settings in my app, but Activity_Pause is not pausing. I've done some reading on here, but don't see what I'm doing wrong. The tutorial says:
First I put a breakpoint in Activity_pause and did each of the above with no catch. Then I added a MsgBox and did each of the above and still nothing. Activity_Resume always fires. What am I missing?
As discussed above Activity_Pause is called every time that the activity moves from the foreground to the background. This can happen because:
1. A different activity was started.
2. The Home button was pressed
3. A configuration changed event was raised (orientation changed for example).
4. The Back button was pressed.
First I put a breakpoint in Activity_pause and did each of the above with no catch. Then I added a MsgBox and did each of the above and still nothing. Activity_Resume always fires. What am I missing?