Re: [perl-win32-gui-users] Newbie: Win32::GUI - Problem finding loadable object for module W in32::GUI

2001-07-11 Thread Johan Lindstrom
Mark wrote: > As a newbie to both Perl and Win32:GUI I am a little confused with an > error message I am receiving after running the simple Perl script below. I guess you are using the Windows Script Host and a .wsf file to run this (or something similar). I just had to try this thing, and g

RE: [perl-win32-gui-users] Newbie: Win32::GUI - Problem finding l oadable object for module W in32::GUI

2001-07-11 Thread Peter Eisengrein
You need to give your widgets a -name and the label needs a position. Also, if you do not include Win32::GUI::Dialog() your window will not remain open. Try this one. use Win32::GUI; $main = Win32::GUI::Window->new(-name => "Window", -width => 100, -height => 100); $main->AddLabel

[perl-win32-gui-users] Newbie: Win32::GUI - Problem finding loadable object for module W in32::GUI

2001-07-11 Thread Mark Hindmarsh
> Hi guys, > > As a newbie to both Perl and Win32:GUI I am a little confused with an > error message I am receiving after running the simple Perl script below. > > -- Can't locate loadable object for module Win32::GUI in @INC (@INC > contains: C:/Perl/lib C:/Perl/Site/lib .) at (eval 2) line 3 --

Re: [perl-win32-gui-users] Checkboxes in Listview?

2001-07-11 Thread Johan Lindstrom
Stephan wrote: Can I put checkboxes into a listview? Not the default one that comes with listview, but the real checkbox widgets. I once tried putting a Textfield on top of a ListView with little success. Apart from the ListView wanting to redraw itself on top of the Textfield (I think it wa

Re: [perl-win32-gui-users] Kill event?

2001-07-11 Thread Johan Lindstrom
Peter wrote: Is there a Kill or other such event if a GUI app crashes or killed? Or should that just be handled with %SIG it would be awfully convenient if you could do something like: I tried a few things awhile back and the only %SIG I could get to work was this: sub trapEnd { prin