EDN Admin
Well-known member
I am attempting to use a tooltip to indicate an error in the validating method.
The first time an invalid entry is made, the tail on the tooltip does not point to the control.
Subsequent incorrect entries do point to the correct control.
Here is my code. Can anyone tell me what Im doing wrong?
Thanks
Murray
Private Sub txtPassword_Validating(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles txtPassword.Validating
PWTest = Trim(txtPassword.Text)
Select Case Len(PWTest)
Case Is < 8, Is > 30
e.Cancel = True
ToolTip1.ToolTipTitle = "Password incorrect"
ToolTip1.Show("A password must have at lease 8 characters and not more than 30", txtPassword, 5000)
Case Else
End Select
End Sub
M Whipps
View the full article
The first time an invalid entry is made, the tail on the tooltip does not point to the control.
Subsequent incorrect entries do point to the correct control.
Here is my code. Can anyone tell me what Im doing wrong?
Thanks
Murray
Private Sub txtPassword_Validating(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles txtPassword.Validating
PWTest = Trim(txtPassword.Text)
Select Case Len(PWTest)
Case Is < 8, Is > 30
e.Cancel = True
ToolTip1.ToolTipTitle = "Password incorrect"
ToolTip1.Show("A password must have at lease 8 characters and not more than 30", txtPassword, 5000)
Case Else
End Select
End Sub
M Whipps
View the full article