Isac Active Member Licensed User Longtime User Feb 21, 2014 #1 How do I keep the module Main active even when I close the application? thanks
JakeBullet70 Well-Known Member Licensed User Longtime User Feb 21, 2014 #2 If you are going to close it why do you want to keep it running? Are you looking for a background app? I think what your are looking for is a Service module Look here Upvote 0
If you are going to close it why do you want to keep it running? Are you looking for a background app? I think what your are looking for is a Service module Look here
Isac Active Member Licensed User Longtime User Feb 21, 2014 #3 No I am creating an application where the data will be inserted through edittex. if I close the main page I lose the dates Last edited: Feb 21, 2014 Upvote 0
No I am creating an application where the data will be inserted through edittex. if I close the main page I lose the dates
Isac Active Member Licensed User Longtime User Feb 21, 2014 #4 When the variable dates acquires the data how do I make it active even if I close the app? I currently have a service module that is activated on the date X but if I close the main form does not work B4X: StartServiceAt(start,date,False) Upvote 0
When the variable dates acquires the data how do I make it active even if I close the app? I currently have a service module that is activated on the date X but if I close the main form does not work B4X: StartServiceAt(start,date,False)
Erel B4X founder Staff member Licensed User Longtime User Feb 23, 2014 #5 You should save the value in a file. The process will eventually be killed. See KeyValueStore class. Upvote 0