RE: [perl-win32-gui-users] cosmetic items

2001-11-29 Thread Howard, Steven (US - Tulsa)
Ok, now that I have an example like that to look at, it does. my mistake was in defining the size as the size of the check box by itself, and then thinking the text would be at the left instead of on the right of the box. That works well. Thanks, Steve H. -Original Message- From: Jeremy

Re: [perl-win32-gui-users] cosmetic items

2001-11-29 Thread Jeremy Blonde
Perhaps I'm missing something here, but doesn't the -text parameter produce the text for the checkbox? Or am I just misunderstanding the question? $Window->AddCheckbox( -name => "CB1", -text => "Groups", -pos => [ 25, 125 ], -size => [ 110, 18 ], -tabstop => 1, ); Also, just

RE: [perl-win32-gui-users] cosmetic items

2001-11-29 Thread Howard, Steven (US - Tulsa)
Kevin, Thank you very much. It worked perfectly. Steve H. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, November 29, 2001 3:46 AM To: perl-win32-gui-users@lists.sourceforge.net; [EMAIL PROTECTED] Subject: Re: [perl-win32-gui-users] cosmetic items

Re: [perl-win32-gui-users] cosmetic items

2001-11-29 Thread Kevin . ADM-Gibbs
Howard, It sounds like you want to have a label next to your check box. Something like $Window->AddLabel( -text=> "Click here to enable a great feature", -name=> "Viewby", -left=> 500, -top => 32, -width => 45,