RE: [perl-win32-gui-users] Doevent problem in minimised window - Please help

2003-05-28 Thread Peter Eisengrein
Note sure why it stops when minimized, I assume it is a scope issue and is supposed to happen. Nevertheless, change your for() loop to a _Timer event and it [1] should work, [2] be more Windows-y, and [3] allow you to do other things with the window in between counts (whereas sleep will only sleep)

Re: [perl-win32-gui-users] AddLabel and Variables

2003-05-28 Thread Johan Lindstrom
At 12:06 2003-05-28 +0100, Daryll Elston wrote: $W1->AddLabel ( -text => $password, -left => 100, -top => 60, -font => $pwd_font, ); Black om white: -foreground => [0, 0, 0], -backgr

[perl-win32-gui-users] AddLabel and Variables

2003-05-28 Thread Daryll Elston
I am using the Digest::MD5 module to take input from a user and then generate a password which I want to display in a 2nd dialog box, mainly because I want to change the colour of the txt etc. However, no joy, does anybody know if this is possible? it does display OK in a MsgBox but that is a bit

[perl-win32-gui-users] Doevent problem in minimised window - Please help

2003-05-28 Thread Jangale V-S SPEL-TIT
I am new to Win32::GUI . I have written a basic program (copied from examples) as below use Win32::GUI; $main = Win32::GUI::Window->new( -name=> "Main", -title => "Win32-GUI: Doevents-Demo", -left=> 100, -top => 100, -width => 600, -height => 400, ); sub Main_Terminat