From: Keith K. <kki...@st...> - 2001-02-12 19:36:09
|
The Perl code below will cause an access violation. Uncommenting the -name parameter will fix it. Took a while to figure this out. The offending line is in GUI.XS, Create(), line 4512: strcpy( (perlud->szWindowName), perlcs.szWindowName); Is this the proper mailing list to report bugs on? -Keith. --cut here--cut here--cut here--cut here--cut here--cut here--cut here--cut here--cut here-- use strict; use Win32::GUI; $wndMain = Win32::GUI::Window->new( -name => 'wndMain', -title => 'pbLaunch', -width => 600, -height => 400 ); $wndStatus = $wndMain->AddStatusBar( ## -name => 'wndStatus', -width => $wndMain->ScaleWidth ); |