S
Scientific
Hello,
Is there a way to setup Steve Lebans Tool Tips so that it can be turned
on/off from a checkbox. I have the code I'm using below:
Private Sub Form_Load()
Set TTip = New clsToolTip
Me.txtPersonnel.SetFocus
With TTip
Call .Create(Me)
.DelayTime = 10000
.SetToolTipTitle "BUBBLE HELP", 0
.ForeColor = vbBlack
.BackColor = RGB(255, 255, 255)
.SetToolText Me.txtFullName, "blah blah"
.SetToolText Me.cboCompany, "blah blah"
.SetToolText Me.cboContact, "blah blah"
End With
End Sub
Is there a way to setup Steve Lebans Tool Tips so that it can be turned
on/off from a checkbox. I have the code I'm using below:
Private Sub Form_Load()
Set TTip = New clsToolTip
Me.txtPersonnel.SetFocus
With TTip
Call .Create(Me)
.DelayTime = 10000
.SetToolTipTitle "BUBBLE HELP", 0
.ForeColor = vbBlack
.BackColor = RGB(255, 255, 255)
.SetToolText Me.txtFullName, "blah blah"
.SetToolText Me.cboCompany, "blah blah"
.SetToolText Me.cboContact, "blah blah"
End With
End Sub