T
Tim
Hi folks,
Could anyone tell me how to fix the following code? It
always returns true value even Me.LoginID contains lower
case letter.
Private Sub LoginID_LostFocus()
If Me.LoginID = UCase(Me.LoginID) Then
MsgBox "Match"
Else
MsgBox "Unmatch"
Me.LoginID = UCase(Me.LoginID)
End If
End Sub
Thanks in advance.
Tim.
Could anyone tell me how to fix the following code? It
always returns true value even Me.LoginID contains lower
case letter.
Private Sub LoginID_LostFocus()
If Me.LoginID = UCase(Me.LoginID) Then
MsgBox "Match"
Else
MsgBox "Unmatch"
Me.LoginID = UCase(Me.LoginID)
End If
End Sub
Thanks in advance.
Tim.