How do i make a Tooltip appear when the mouse is hovering over a Picture Box

Add a ToolTip component to your form. To set the tip text for a specific control at design time you set that control's 'ToolTip on ToolTip1' property. That's not actually a property though. It's designed to look like one but the IDE actually generates a method call for that. Here's an example of the designer-generated code:

Me.ToolTip1.SetToolTip(Me.Button1, "Hello World")

Comments