RE: [perl-win32-gui-users] AddLabel --> DrWatson

2003-03-03 Thread Jeremy Blonde
You need to have the -name parameter for the label (and pretty much any GUI element) that you create. Jeremy Blonde Network Technician Davis Joint Unified School District 530.757.5300 ext. 117 -Original Message- From: Peter Janson [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 3

[perl-win32-gui-users] AddLabel --> DrWatson

2003-03-03 Thread Peter Janson
I thought I shuld take a look at win32::gui, and started out with the following script taken from a tutorial: - use Win32::GUI; $main = Win32::GUI::Window->new( -name => 'Main', -width => 100, -height => 100, ); $main->AddLabel(-text => "Hello, world"); $m