0

Please help me in this issue. I am working in windows forms using c#. i have a textbox called textBox1. I want to use validation like without entering anything in textBox1 the cursor should not move to next text field.

1

3 Answers 3

1

On the MouseLeave event of that text box do try this..

if (textBox1.TextLength < 1)
{
  textBox.Focus();
}
Sign up to request clarification or add additional context in comments.

Comments

0

Your question isn't exactly clear, to validate that there is indeed something entered in the textbox you can check either:

textBox1.TextLength > 0

or

!String.IsNullOrEmpty(textBox1.Text)

Comments

0

This is not an approach I recommend, but you can handle the textbox's Validating event and cancel (setting the focus back to the textbox) if nothing has been entered, like this:

private void textBox1_Validating(object sender, CancelEventArgs e)
{
    if (textBox1.Text.Trim() == "")
    {
        e.Cancel = true;
    }
}

This will work, but it is certain to annoy the users. A better approach to validation is to let users enter or not enter text in various textboxes as they choose, and then validate everything at once when the user submits the form.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.