define a command button

eran185

Registered User.
Local time
Today, 09:41
Joined
May 11, 2007
Messages
55
how can i define that when a user pass over a command button , he will see some words (that define the button)?
 
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"
 

Users who are viewing this thread

Back
Top Bottom