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
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
> 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 --
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
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
5 matches
Mail list logo