That works great but, is there a way for the tip to display carriage returns?



----- Original Message -----
From: "Lynn. Rickards" [EMAIL PROTECTED]
Sent: 08/19/2005 05:49 PM
To: <[EMAIL PROTECTED]>
Subject: RE: Can Win32::GUI attach tooltip to textfield?

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of
> [EMAIL PROTECTED]
> Sent: Friday, August 19, 2005 1:06 PM
> To: [email protected]
> Subject: Can Win32::GUI attach tooltip to textfield?
> 
> With Win32::GUI, Is it possible to attach a tooltip to a textfield or a
> lable?
> Thanks in advance
> 

Just add a -tip arg:

$mw->AddTextfield(
        -name   => "Username",
        -pos    => [ 60, 60 ],
        -prompt => "Your name:",
        -size   => [ 80, 20 ],
        -tip    => "Type your name",
    );

HTH - Lynn.

_______________________________________________
Perl-Win32-Admin mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to