Re: Problem in Maskedtextbox
How about
vb.net Code:
If MaskedTextBox1.Text = "00000-0000000-0" Then
Re: Problem in Maskedtextbox
Quote:
Originally Posted by
Hack
How about
vb.net Code:
If MaskedTextBox1.Text = "00000-0000000-0" Then
HI Hack, this code is not working, it still doesn't give the message.
Re: Problem in Maskedtextbox
hello abid,
this should work...it checks the entire mask for completeness...
vb Code:
If Not MaskedTextBox1.MaskCompleted Then
msgbox("enter your number")
End If
Re: Problem in Maskedtextbox
Thank You very much sir. its working, but would you please tell me the purpose of this code? i mean you have written that it checks the entire mask for completeness, so what does it means please explain.