ToolTip Will not display -
11-07-2006
, 03:38 PM
I've created a tooltip in VB 2003 per the help file (code follows) but the
tool tips never show up. What else do I need to do.
Private Sub frmQuotation_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim toolTip1 As New ToolTip
toolTip1.Active = True
' Set up the delays for the ToolTip.
toolTip1.AutoPopDelay = 50
toolTip1.InitialDelay = 10
'toolTip1.ReshowDelay = 500
' Force the ToolTip text to be displayed whether or not the form is
active.
toolTip1.ShowAlways = True
' Set up the ToolTip text for the Button and Checkbox.
toolTip1.SetToolTip(Me.chkWeights, "Weights and Gallons of Oil")
toolTip1.SetToolTip(Me.chkQRCTankID, "TankID and Steel Type")
end sub
There are no compile time or run time errors. |