Hi All,
i have installed Win32 GUI 0.0.558 on Win Nt through
ppm. Perl version is 5.6.1 (MSWin32-x86-multi-thread).
I tried this simple program to start with.
#!E:/Dev/Perl/bin/perl
use Win32::GUI;
$main = Win32::GUI::Window->new(
-name => 'Main',
-widt
This is a common newbie error (xqsme), I think there are even some of the
samples where this happened:
ALL Win32-GUI objects (window, widgets, timers, everything) need a -name
option and usually this must be a unique name.
Change
$main->AddLabel(-text => "Hello, world");
to
$main->AddLabel(-name
2 matches
Mail list logo