|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
mousehoverIs there a way of having a tip appear when you hover over a button? I
have a button that has an icon on it, I would like a tip to pop up explaining what the button does when the mouse is over the button. Thanks "Stout" <whan***@Yahoo.com> wrote in message I think that's done with the ToolTip control.news:1144542200.588706.278690@z34g2000cwc.googlegroups.com... > Is there a way of having a tip appear when you hover over a button? I > have a button that has an icon on it, I would like a tip to pop up > explaining what the button does when the mouse is over the button. > > Thanks > Add it to the form, and set some properties, then you can set the Tool Tip text on each of the other controls. On 8 Apr 2006 17:23:20 -0700, "Stout" <whan***@Yahoo.com> wrote: (VB2005)>Is there a way of having a tip appear when you hover over a button? I >have a button that has an icon on it, I would like a tip to pop up >explaining what the button does when the mouse is over the button. > >Thanks Use the ToolTip Class. You would add something like the following to the form's load event to create a tool tip and tooltip functionality for (in this case) a button named Button1: Dim Button1Hint As New ToolTip() ' Set up the delays for the ToolTip. Button1Hint.AutoPopDelay = 5000 Button1Hint.InitialDelay = 1000 Button1Hint.ReshowDelay = 500 ' Set up the ToolTip text for the Button Button1Hint.SetToolTip(Me.Button1, "This is Button 1") Gene
StringBuilder termination char
Run code from IDE Save graphics image to bitmap? 32bit image quality in menus and tool bar strips VB2005 - Secure Access to SQL Server through Application Only Applications sharing Forms Authentication OptionExplicit How can I know my application's path? decimal serious problem How do I get a gradualy changing colors? |
|||||||||||||||||||||||