|
From: Frank S. <st...@cs...> - 2001-09-28 16:41:20
|
I tried the "Hello, world" script from the Win32::GUI tutorial part 1.
(This is with yeterday's Active State build and Win32::GUI 0.558
installed by ppm on Win98SE). I get the following Windows error:
PERL caused an invalid page fault in
Module MSVCRT.DLL at 0167:78003b44.
Registers:
EAX=01824f5c CS=0167 EIP=78003b44 EFLGS=00010246
(etc.)
This is the script (hello.pl)
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;
}
I assume I missed some absolute first step in the process...
I scanned the listserv archive and didn't see anyone else
disqualified so early in the game :-)
========================================================================
Frank Stetzer, Ph.D. st...@uw...
Research Support P.O. Box 413
Information and Media Technologies Milwaukee, WI 53201
University of Wisconsin - Milwaukee (414)-229-4571
|