Question

How can I check if a masked text box in C# is empty, i.e. the user has not entered anything?

My text box only allows 4 numbers to be input.

Thanks

Was it helpful?

Solution

You can check if Text property of the MaskedTextBox is null or String.Empty

if (String.IsNullOrEmpty(maskedTextBox1.Text))
{
    //no input
}

OTHER TIPS

Try this:

maskedTextBoxInput.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals;
if (maskedTextBoxInput.Text == "")
{
    ...
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top