RE: [perl-win32-gui-users] AddLabel crashes Perl?

2002-04-21 Thread Terry Carroll
On Sun, 21 Apr 2002, Piske, Harald wrote: > You need a -name => 'something' option in *every* widget. > The name does not need to be unique, if you don't have to access the widget > later, but it *must* be specified. V 0.0.558 crashes on a widget without > -name, other versions don't. Thanks, Ha

RE: [perl-win32-gui-users] AddLabel crashes Perl?

2002-04-21 Thread Piske, Harald
You need a -name => 'something' option in *every* widget. The name does not need to be unique, if you don't have to access the widget later, but it *must* be specified. V 0.0.558 crashes on a widget without -name, other versions don't.

[perl-win32-gui-users] status bar

2002-04-21 Thread markd
is there any way to stop a status bar from being able to be resized? thanx

[perl-win32-gui-users] AddLabel crashes Perl?

2002-04-21 Thread Terry Carroll
I'm a new Win32:GUI user, trying the first sample in guitut1.html: use Win32::GUI; $main = Win32::GUI::Window->new( -name => 'Main', -width => 100, -height => 100, ); $main->AddLabel(-text => "Hello, world"); $main->Show();