Thursday, 11 July 2013

only numeric in textbox in c#

private void txt_producerName_KeyPress(object sender, KeyPressEventArgs e)
        {
           try
            {
                if (Convert.ToInt16(e.KeyChar) == 8)
                    backspaceflag = true;
                else
                    backspaceflag = false;
                if (char.IsNumber(e.KeyChar) || Convert.ToInt16(e.KeyChar) == 8)
                {
                    e.Handled = false;
                }
                else
                {
                    e.Handled = true;
                }

            }
            catch (Exception ex)
            {
            }
        }

No comments:

Post a Comment

How to highlight selected text in notepad++

  –> To highlight a block of code in Notepad++, please do the following steps step-1  :- Select the required text. step-2  :- Right click...