S sarkis Member Licensed User Longtime User Mar 26, 2012 #1 Hi all, I am trying to save some data when application paused but Activity_Pause doesn't running. Any ideas? here is a code ------ Sub Activity_Pause (UserClosed As Boolean) Msgbox( "Activity_Pause","Activity_Pause") -------- Thanks for replaying
Hi all, I am trying to save some data when application paused but Activity_Pause doesn't running. Any ideas? here is a code ------ Sub Activity_Pause (UserClosed As Boolean) Msgbox( "Activity_Pause","Activity_Pause") -------- Thanks for replaying
klaus Expert Licensed User Longtime User Mar 26, 2012 #2 MsgBox doesn't work in Activity_Pause. Insert a Log("Pause") and you will see that the routine is called. Best regards. Upvote 0
MsgBox doesn't work in Activity_Pause. Insert a Log("Pause") and you will see that the routine is called. Best regards.
S sarkis Member Licensed User Longtime User Mar 26, 2012 #3 I tried also this but sub Write_history doesn't called again. Sub Activity_Pause (UserClosed As Boolean) Write_history End Sub Upvote 0
I tried also this but sub Write_history doesn't called again. Sub Activity_Pause (UserClosed As Boolean) Write_history End Sub
Erel B4X founder Staff member Licensed User Longtime User Mar 26, 2012 #4 The sub is called. You cannot show a msgbox or a breakpoint while the activity gets paused. Try to add Log("Pause") and you will see that is appears in the logs. Upvote 0
The sub is called. You cannot show a msgbox or a breakpoint while the activity gets paused. Try to add Log("Pause") and you will see that is appears in the logs.
nfordbscndrd Well-Known Member Licensed User Longtime User Mar 26, 2012 #5 sarkis said: I tried also this but sub Write_history doesn't called again. Sub Activity_Pause (UserClosed As Boolean) Write_history End Sub Click to expand... You might also want to see this page in the Documentation Wiki if you haven't already looked at it. Upvote 0
sarkis said: I tried also this but sub Write_history doesn't called again. Sub Activity_Pause (UserClosed As Boolean) Write_history End Sub Click to expand... You might also want to see this page in the Documentation Wiki if you haven't already looked at it.
S sarkis Member Licensed User Longtime User Mar 26, 2012 #6 This was very helpful Thanks gays This was very helpful to understand life cycle Upvote 0
S susu Well-Known Member Licensed User Longtime User Mar 26, 2012 #7 sarkis said: Thanks gays Click to expand... Upvote 0
XverhelstX Well-Known Member Licensed User Longtime User Mar 26, 2012 #8 Thaha Sent from my SE Xperia Play using Tapatalk. Upvote 0