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

  • Home
  • SEARCH
  • 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 1080871
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:05:40+00:00 2026-05-16T22:05:40+00:00

Hi i have a gridview.My requirement is when the user enters a decimal value

  • 0

Hi i have a gridview.My requirement is when the user enters a decimal value in a field, it should allow user to enter only 2 decimal place digits.After entering 2 decimal place the focus should get to next field.
Thanks

  • 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-16T22:05:41+00:00Added an answer on May 16, 2026 at 10:05 pm

    I got the solution Geetha, I handled the event EditingControlShowing for my DataGridView.
    The code is below:

    private void Lot_dataGridView_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
    {
        if (e.Control is DataGridViewTextBoxEditingControl)
        {
            if (ColIndex == "2") // this colIndex i got it from CellEnter event.
            {
                DataGridViewTextBoxEditingControl te = (DataGridViewTextBoxEditingControl)e.Control;
                te.TextChanged += new EventHandler(textbox_TextChanged);
            }
        }
    }
    

    and then i handled the textbox_TextChanged event.

    void textbox_TextChanged(object sender, EventArgs e)
    {
        TextBox tb = (TextBox)sender;
        MessageBox.Show(tb.Text);
        // Do your changes here.
        // To Change focus from the current cell use
        SendKeys.Send("{TAB}"); // to give focus to next cell in the same row.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a gridview that is only shown in a modal popup. right before
I have a table in the itemtemplate of a gridview. My requirement is something
My requirement is, i have a checkedlistbox, and i want the selected item should
I am using a text box inside a GridView as ItemTemplate field. I have
In a gridview I have the following Template Field containing a textbox <asp:TemplateField ShowHeader=true
Have a gridview control which will show X amount of rows. I want to
I have a GridView which I am populating by calling a method to return
I have a gridview that shows an image as part of one of its
I have a GridView what I fill through a LINQ expression. Something like this:
I have a gridview that displays items details, I added two template fields one

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.