Jeff Seale wrote: > How would one go about writing a program which included a clock that > updated itself? Right now I'm able to display the time in a text widget in > the window but I can't get it to update. In your GUI library, find the mechanism to produce delayed/timed events. Then, in the event callback, update the text of the widget. Regards, Martin