The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Tk::ProgressIndicator - Another, simpler ProgressBar

SYNOPSIS

    use Tk::ProgressIndicator;

    my $MainWindow = MainWindow->new();

    $ProgressIndicator = $MainWindow->ProgressIndicator
       (
        '-current' => 0,
        '-limit' => 200,
        '-increment' => 10,
        '-height' => 20,
        '-width' => 400
       );

    Tk::MainLoop;

    ...

    $ProgressIndicator->configure ('-current' => ++$index);

DESCRIPTION

A progress bar widget.

AUTHORS

Damion K. Wilson, dkw@rcm.bm

HISTORY

1 POD Error

The following errors were encountered while parsing the POD:

Around line 163:

=cut found outside a pod block. Skipping to next block.