E eran185 Registered User. Local time Today, 09:41 Joined May 11, 2007 Messages 55 May 26, 2007 #1 how can i define that when a user pass over a command button , he will see some words (that define the button)?
how can i define that when a user pass over a command button , he will see some words (that define the button)?
boblarson Smeghead Local time Today, 09:41 Joined Jan 12, 2001 Messages 32,040 May 26, 2007 #2 In the form's properties there is a property called "ControlTip Text." That is what you want. You can either set it at design time, or you can at run time with code: Me.YourControlName.ControlTipText = "Something Here"
In the form's properties there is a property called "ControlTip Text." That is what you want. You can either set it at design time, or you can at run time with code: Me.YourControlName.ControlTipText = "Something Here"