in reply to Win32 GUI freeze

You basically have two options

The first solution is the easiest to code

-- ecocode

Replies are listed 'Best First'.
Re^2: Win32 GUI freeze
by ckant8 (Acolyte) on Feb 19, 2013 at 06:02 UTC
    I have added progress bar to my script. but gettinng error saying "can not call method SetRange on an undefined value". I have added use Win32::GUI(); my $progress_bar = $main->AddProgressBar ( -name => 'ProgressBar', -pos => 10, 10, -size => 270, 20, -smooth => 1, -vertical => 0, ); $progress_bar->SetRange(0,50); $progress_bar->SetStep($y); $progress_bar->StepIt();