From: Louis B. <lb...@li...> - 2001-06-26 12:46:01
|
I found that this line was in error: $main->AddLabel(-text =3D> "Hello World"); I needed to include the -name as shown bellow: $main->AddLabel( -name =3D> "Test", -text =3D> "Hello World", ); What bothers me about this is that I pulled the top line right from the=20 documentation. I am sure no one has time but the docs should be changed=20 accordingly. Louis At 08:31 AM 6/26/2001 -0400, you wrote: >I am getting perl.exe - Application Error when trying to run the=20 >following code: > use Win32::GUI; > $main =3D Win32::GUI::Window->new( > -name =3D> 'Main', > -width =3D> 100, > -height =3D> 100, > ); > $main->AddLabel(-text =3D> "Hello, world"); > $main->Show(); > Win32::GUI::Dialog(); > > sub Main_Terminate { > -1; > } > >I am sure the error is not in perl or your win-gui module but I do not=20 >know what it is or how to go about finding out what is causing it. I have= =20 >shutdown everything I am running to see if something else is effecting it= =20 >but I am not getting any where. > >If anyone has any suggestions that would be great? >OS: Win2K Pro >Perl: ActivePerl 5.6.0 build 623 > >Thanks, >Louis > >-- >=A4=A4=BA=B0`=B0=BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0= =BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0=BA=A4 >=A4=B0`=B0Lightbridge, Inc >=A4=B0`=B067 South Bedford St. >=A4=B0`=B0Burlington MA 01832 >=A4=B0`=B0781.359.4795 mailto:lb...@li... >=A4=B0`=B0http://www.lightbridge.com >=A4=A4=BA=B0`=B0=BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0= =BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0=BA=A4 > > >_______________________________________________ >Perl-Win32-GUI-Users mailing list >Per...@li... >http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users -- =A4=A4=BA=B0`=B0=BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0= =BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0=BA=A4 =A4=B0`=B0Lightbridge, Inc =A4=B0`=B067 South Bedford St. =A4=B0`=B0Burlington MA 01832 =A4=B0`=B0781.359.4795 mailto:lb...@li... =A4=B0`=B0http://www.lightbridge.com =A4=A4=BA=B0`=B0=BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0= =BA=A4=F8,=B8=B8,=F8=A4=BA=B0`=B0=BA=A4=F8=F8=A4=BA=B0`=B0=BA=A4 |