Article ID: 150186
Article Last Modified on 3/14/2005
Private Sub MaskEdBox1_ValidationError(InvalidText As String, _
StartPosition As Integer)
If Mid$(InvalidText, StartPosition + 1, 1) <> MaskEdBox1.PromptChar Then
MsgBox "You are typing in the wrong stuff"
End If
End Sub
Private Sub Command1_Click() MaskEdBox1.SetFocus End Sub
Private Sub MaskEdBox1_ValidationError(InvalidText As String, _
StartPosition As Integer)
MsgBox "You are typing in the wrong stuff"
End Sub
Private Sub MaskEdBox1_ValidationError(InvalidText As String, _
StartPosition As Integer)
If Mid$(InvalidText, StartPosition + 1, 1) <> MaskEdBox1.PromptChar Then
MsgBox "You are typing in the wrong stuff"
End If
End Sub
Additional query words: kbVBp400bug kbVBp500bug kbVBp600bug kbVBp kbdsd kbDSupport kbControl
Keywords: kbbug kbpending kbcontrol KB150186