Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4036030
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:10:22+00:00 2026-05-20T12:10:22+00:00

I have a special TextBox that should be validated on Enter. On this validation,

  • 0

I have a special TextBox that should be validated on Enter.

On this validation, the Form should net be however submitted if it has defined an AcceptButton.

In the following code I have 2 textBoxes: one normal, and one other – myTextBox – that validates itself on Enter (DoubleClick the form time to see it):

public partial class Form1 : Form
{
    private TextBox TextBox1;
    private MyTextBox MyTextBox1;
    private Button OKButton;
    public Form1()
    {
        InitializeComponent();

        TextBox1 = new TextBox();
        TextBox1.Parent = this;
        TextBox1.Location = new Point(0, 50);

        MyTextBox1 = new MyTextBox();
        MyTextBox1.Parent = this;
        MyTextBox1.Location = new Point(0, 100);
        MyTextBox1.Visible = false;

        OKButton = new Button();
        OKButton.Parent = this;
        OKButton.Location = new Point(0, 125);
        OKButton.Click += new EventHandler(OKButton_Click);

        this.AcceptButton = OKButton;
    }

    void OKButton_Click(object sender, EventArgs e)
    {
        if (MyTextBox1.Visible)
            return;
        Console.WriteLine("!!! OKButton_Click !!!");
    }

    protected override void OnMouseDoubleClick(MouseEventArgs e)
    {
        MyTextBox1.Visible = true;
        base.OnMouseDoubleClick(e);
    }
}

public class MyTextBox : TextBox
{
    protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
    {
        if (keyData == Keys.Enter)
        {
            Console.WriteLine("!!! MyTextBox_Validation !!!");
            this.Visible = false;
        }
        return base.ProcessCmdKey(ref msg, keyData);
    }
}

The fact of “Validated” is reflected by the myTextBox visibility, however this does not help, because in the OKBUtton_Click myTextBox1 is already made invisible…

enter image description here

Ideally, after myTextBox validation I would like to stop the Enter key Message propagation on the parent Form. Is it possible? If not, how should I validate MyTextBox without validating the form?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T12:10:23+00:00Added an answer on May 20, 2026 at 12:10 pm

    I hope I understand your question correctly. Did you try returning TRUE in your ProcessCmdKey override if you process the event? Returning true tells the event system that event was consumed and prevents further processing For example:

    protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { 
        if (keyData == Keys.Enter) {
            Console.WriteLine("!!! MyTextBox_Validation !!!"); 
            this.Visible = false;
            return true;
        }
        return base.ProcessCmdKey(ref msg, keyData); 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a textbox that should disallow entering any special characters. The user can
I'd like to have an asp.net textbox that people can paste content into and
I have a button that, when it has focus, has a special style. I
I have kind of a lazy form that has two textboxes. When I click
I have a HTML textbox, I restrict from special characters being entered. But when
Ok, I understand that using strings that have special characters is an encoding issue.
Does ** have any special meaning in C? Like this: static intparse_one (int argc,
I have some special parameters to all my wcf service methods that are handled
I have seen a few OSX apps that have a Special Characters menu item
I seem to remember that Regular Expressions in DotNet have a special mechanism that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.