RE: [perl-win32-gui-users] AddTextfield error

2003-07-16 Thread Peter Eisengrein
What is the value of $pt12 and what happens if you put it in double quotes? -Original Message- From: Dennis Putnam [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 3:11 PM To: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] AddTextfield error I have the

[perl-win32-gui-users] AddTextfield error

2003-07-16 Thread Dennis Putnam
I have the following object defined: $window->AddTextfield( -name=>"URL", -top=>90, -left=>10, -font=>$pt12, -prompt=>"Enter starting URL", -text=>"http://";, -width=>430, -height=>25, ); Everything is working correctly but I get the following errors (when I comment out the obje

RE: [perl-win32-gui-users] Another novice question - font for AddTextfiled -prompt property

2003-07-16 Thread Frazier, Joe Jr
> -Original Message- > From: Dennis Putnam [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 16, 2003 9:06 AM > To: perl-win32-gui-users@lists.sourceforge.net > Subject: [perl-win32-gui-users] Another novice question - font for > AddTextfiled -prompt property > > > > -BEGIN PGP SIGNE

[perl-win32-gui-users] Another novice question - font for AddTextfiled -prompt property

2003-07-16 Thread Dennis Putnam
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 How do I set the font for the '-prompt' property? The '-font' parameter only seems to effect the text box. The obvious (to me): $window->mytextfield->Prompt->Font($F); doesn't work? TIAA. -BEGIN PGP SIGNATURE- Version: PGPfreeware 6.5.8 for

RE: [perl-win32-gui-users] Novice question about accessing AddLabel properties

2003-07-16 Thread Frazier, Joe Jr
> -Original Message- > From: Dennis Putnam [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 16, 2003 8:05 AM > To: perl-win32-gui-users@lists.sourceforge.net > Subject: [perl-win32-gui-users] Novice question about > accessing AddLabel > properties > > > > -BEGIN PGP SIGNED MESSAGE-

Re: [perl-win32-gui-users] Novice question about accessing AddLabel properties

2003-07-16 Thread Johan Lindstrom
At 08:05 2003-07-16 -0400, Dennis Putnam wrote: I need to change the text property of an AddLabel object and cannot find any documentation on how to do this. For example: $window->AddLabel( - -name=>"mylabel", $window->mylabel->Text("My new text"); Works for most controls, like windows, butto

[perl-win32-gui-users] Novice question about accessing AddLabel properties

2003-07-16 Thread Dennis Putnam
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I need to change the text property of an AddLabel object and cannot find any documentation on how to do this. For example: $window->AddLabel( - -name=>"mylabel", . . . - --text=>"Original text" ); Later in the script I need to change that label, alt