How can I programatically cause a control's tooltip to show in a Winforms app without needing the mouse to hover over the control? (P/Invoke is ok if necessary).
|
If you are using the
The MSDN documentation for the ToolTip control's "Show" method has all the different variations on this and how to use them. |
|||||||||
|
The tooltip will be set over the control "textBox1". Have a read here: |
|||
|
|
|
First You need to add tooltip control to the form Second attach the tooltip control to some control you want the tooltip to show on (MyControl) Third do this: Tooltip1.Show("My ToolTip Text", MyControl) |
|||
|
|
|
Kevin, if you want to create your own balloon, read this link:Task 3: Showing Balloon tips. There mentioned NativeMethods class with the TOOLTIPS_CLASS constant. |
|||
|
|
|
This is the code I use:
Call CreateToolTip function to create a tool tip for a certain control. |
|||
|
|
If you create your variable private to the whole form, you will be able to call the sub for the and adjust the initialdelay.
|
||||
|
|