[perl-win32-gui-users] Awaiting modal window closure

2004-11-30 Thread Mark Nettlingham
Hi all, I'm trying to implement a simple error handling subroutine, which pops up a modal error message during the main Dialog() phase. My problem is that when I call my subroutine, the modal window appears, but my script won't wait for me to close it before carrying on. I've had a bit of a fiddl

[perl-win32-gui-users] window refresh issue

2004-11-03 Thread Mark Nettlingham
Hopefully a simple one.. I have a couple of radio buttons - depending on the selection, I want to hide/show fields. Click event handler: sub userradio_Click { $cs->Change(-visible=>0); $cslabel->Change(-visible=>0); $ws->Change(-visible=>0); $wslabel->Change(-visible=>0); $us-

[perl-win32-gui-users] Listboxes and dropdowns

2004-08-05 Thread Mark Nettlingham
All, Have recently upgraded to the latest version of Win32::GUI, and am getting a warning from the following: $cs = $main->AddCombobox( -name => "cs", -pos => [ 80, $yval ], -tabstop=>1, -width => 170,