protected void TextBox5_TextChanged(object sender, System.EventArgs e)
 {
     try
     {
         float a = float.Parse(TextBox17.Text);
         float b = float.Parse(TextBox5.Text);
         TextBox18.Text = (a * b).ToString();
         TextBox18.Focus();
     }
     catch (Exception we)
     { }
 }