Hi!

Can I define in Harbout timer ?

Like:
PROCEDURE main
LOCAL hTimer:=hb_TimerNew( {|hT|MyProc(hT)} , 1000)  //call in 1000ms cycle
MyProc()
hb_TimerStart(hTimer)   // enable timer
...
...
hb_TimerStop(hTimer)    // disable timer
hb_TimerDelete(hTimer)  //destroy timer
RETURN
//****
PROCEDURE MyProc(hTr)
hb_TimerStop(hTr)
...
hb_TimerStart(hTr)
RETURN


Adam
-- 
View this message in context: 
http://www.nabble.com/Timer-tp23482401p23482401.html
Sent from the Harbour - Dev mailing list archive at Nabble.com.

_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to