Thanks, I try the ProgressBar.
Don
-- Forwarded Message --
Subject: Re: TK question
Date: Friday 07 September 2007 12:36
From: Spencer Chase <[EMAIL PROTECTED]>
To: perl-win32-users@listserv.ActiveState.com
Greetings Don,
you can use Tk::ProgressBar; if you can count the tot
Greetings Don,
you can use Tk::ProgressBar; if you can count the total number of
files. then advance the bar as you increment a counter of files done.
that way, you can let TK do all the hard stuff.
Friday, September 7, 2007, 7:44:30 AM, you wrote:
DV> I have a small app for windows that uses TK
I have a small app for windows that uses TK to display a menu. Mostly
copied out of the book. Each button calls a subroutine. One of the
buttons copies some large files. This all works fine. I need to add
something to let the user know the copy process is in progress. My
first thought is
- Original Message -
From: "Foo JH" <[EMAIL PROTECTED]>
.
.
>
> 'print' will be replaced by 'say'
>
It's (possibly) worth mentioning that the '-l' switch already enables
'say'-type behaviour:
-
C:\_32\pscrpt>type try.pl
#!perl -l
print $_ for 1..3;
C:\_32\ps