Blue.Sky Active Member Licensed User Longtime User Nov 5, 2015 #1 Hi I want to run service in special time example each every 2 minute and 40 second How i can convert it to millisecond or use it in start service?
Hi I want to run service in special time example each every 2 minute and 40 second How i can convert it to millisecond or use it in start service?
JonPM Well-Known Member Licensed User Longtime User Nov 5, 2015 #2 See StartServiceAt and StartServiceAtExact Upvote 0
Blue.Sky Active Member Licensed User Longtime User Nov 5, 2015 #3 JonPM said: See StartServiceAt and StartServiceAtExact Click to expand... I can use service my question is how combine minute:second in service example i want to start service in each 12:40 (minute:second) how convert it to millisecond? My idea is : Minute * 59 * 1000 + Second * 1000 Upvote 0
JonPM said: See StartServiceAt and StartServiceAtExact Click to expand... I can use service my question is how combine minute:second in service example i want to start service in each 12:40 (minute:second) how convert it to millisecond? My idea is : Minute * 59 * 1000 + Second * 1000
JonPM Well-Known Member Licensed User Longtime User Nov 5, 2015 #4 First convert 12:40 to seconds (12*60+40) then convert to milliseconds Upvote 0