hello,
I was wondering if it's proper to do the following...
The MSDN states the following...
"If the function succeeds, the return value is an integer identifying the new timer. An application can pass this value, or the string identifier, if it exists, to the KillTimer function to destroy the timer."
What string identifier? would this be %IDTIMER in the case above?
-------------
Cheers
I was wondering if it's proper to do the following...
Code:
call settimer(cbhndl, %IDTIMER, 1000, %NULL) call killtimer(cbhndl, %IDTIMER)
"If the function succeeds, the return value is an integer identifying the new timer. An application can pass this value, or the string identifier, if it exists, to the KillTimer function to destroy the timer."
What string identifier? would this be %IDTIMER in the case above?
-------------
Cheers
Comment