ToolTips not showing

T

tom.sage

I have a working VB.NET program to which I added a ToolTips control and
set the main Form with some tooltip text, but the tooltip is not shown
when the Form appears.

I tried making a simple program with just a Form and tolltip control.
This works.

I went back to the first program and added a debug before the "Me.Show"
(see below). Still no tooltip.

Debug.WriteLine(ToolTip1.GetToolTip(Me))
Me.Show()

Any ideas how to debug this further?

Thanks
Tom
 
J

james

I have a working VB.NET program to which I added a ToolTips control and
set the main Form with some tooltip text, but the tooltip is not shown
when the Form appears.

I tried making a simple program with just a Form and tolltip control.
This works.

I went back to the first program and added a debug before the "Me.Show"
(see below). Still no tooltip.

Debug.WriteLine(ToolTip1.GetToolTip(Me))
Me.Show()

Any ideas how to debug this further?

Thanks
Tom

Do something similar to this for your tooltip(s) to show. I the case of this example, I have a ComboBox on my form and I want
it to show a Tooltip message when the mouse pointer is over a ComboBox. So, I put the Tooltip code in the ComboBox's MouseEnter
event.
Hope this helps.'
james



Private Sub ComboBox1_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox1.MouseEnter

ToolTip1.SetToolTip(ComboBox1, "Click Down ARROW on Right to Select Client Name")

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top