http://qs321.pair.com?node_id=275403


in reply to Re: Perl/Tk - Tk::Clock
in thread Perl/Tk - Tk::Clock

Greetings! Thank you for your response. Since you mentioned small digital clocks based on Tk; here is another one, even simpler than the first. It is based on the Tk::StrfClock module. All of about 6 lines of code to get it going, it generates a small Tk Widget with date and time.

Here is the code, very simple. Enjoy!

#!/usr/bin/perl -w use Tk; use Tk::StrfClock; my $top=MainWindow->new(); $top->StrfClock()->pack(); MainLoop();

Replies are listed 'Best First'.
Re:
by Anonymous Monk on Jul 28, 2003 at 01:24 UTC
    Hey that last (short one) looks like a winner. However, I don't see it in the ActiveState list. Thats where I get my modules from for Win32 system.