Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I want to check whether the give value in textbox is in range or not.I want to check it on focus lost. I have written following code but it give error which say incorrect input string

Thanks In Advance

C#
private void txtbx_Capcity_LostFocus(object sender, RoutedEventArgs e)
        {
            double txtbx = Convert.ToDouble(txtbx_Capcity.Text);
            if (txtbx > 30)
            {
                txtbx_Capcity.Text = "0";
                MessageBox.Show("Out Of Range");
                txtbx_Capcity.Focus();
            }

            else
            {
                txtbx = Convert.ToDouble(txtbx_Capcity.Text);
                txtbx_Capcity.Text = Math.Round(txtbx, 2).ToString();
            }
            e.Handled = true;
        }
Posted

1 solution

If the text isn't in a format that can be converted to a double then the Convert.ToDouble will throw an exception - so you rpobably want to catch that exception and tell the user.

See the docco here[^] which gives examples of catching the exception.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900