Hello Community!
My question:
LOCAL mytimeVar AS SINGLE
mytimeVar = TIMER
later on:
IF TIMER > mytimeVar THEN
'do something
END IF
All this works fine until the machine jumps over midnight.
Then TIMER is always of lower value than mytimeVar created before midnight.
The results are inpredictible.
Is there any standard-practice to overcome that problem?
Maybe GetTickCount....
Thank You for help as always and greetings from Germany
Heinz Grandjean
My question:
LOCAL mytimeVar AS SINGLE
mytimeVar = TIMER
later on:
IF TIMER > mytimeVar THEN
'do something
END IF
All this works fine until the machine jumps over midnight.
Then TIMER is always of lower value than mytimeVar created before midnight.
The results are inpredictible.
Is there any standard-practice to overcome that problem?
Maybe GetTickCount....
Thank You for help as always and greetings from Germany
Heinz Grandjean
Comment