private void txtQty_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (GeneralMethods.IsNumber(e))
     {
         e.Handled = true;
     }
 }