|
From: Brad C. <b_c...@ya...> - 2001-09-25 01:04:49
|
I just decided to take Win32-GUI for a test drive and
tried the following sample. It abortrf on the
addlabel method. I'm running on Win2000 and I've got
the latest release of Win32-GUI I believe, release
0.0.558. If I comment that line out it runs fine.
Also, I also noticed that the tutorial page one is
missing.
use Win32::GUI;
$main = Win32::GUI::Window->new(
-name => 'Main',
-width => 100,
-height => 100,
);
$main->AddLabel(-text => "Hello, world");
$main->Show();
Win32::GUI::Dialog();
sub Main_Terminate {
-1;
}
Thanks in Advance
Brad
__________________________________________________
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger. http://im.yahoo.com
|