http://www.perlmonks.org?node_id=207372


in reply to alarms and timers on Win32

You could use Tk::After (doc) and give it a callback and time ... i am not sure if that will work on Win32, but i believe so. If you want to get really tricky, you could also use Win32::OLE or Win32::API to access the VB timer object, or other Win32 naitive function, directly. Lastly (and, i am sure this is not the last, but the last i have right now), you could fork a process to keep track of the time, and use IPC to update the label ... seems a bit complex for what you want though. Also, a pretty good clock inplimentation is here(analog), or maybe Tk::Clock ?
from the frivolous to the serious

Replies are listed 'Best First'.
Re: Re: alarms and timers on Win32
by rinceWind (Monsignor) on Oct 23, 2002 at 13:00 UTC
    Fine! Tk::After was what I was looking for. Thanks.