Пример #1
0
 protected void GanaciasTextBox_TextChanged(object sender, EventArgs e)
 {
     if (GanaciasTextBox.Text != "")
     {
         var precio = CalculosBLL.CalcularPrecio(Utils.ToDecimal(CostoTextBox.Text), Utils.ToDecimal(GanaciasTextBox.Text));
     }
     else
     {
         PrecioTextBox.Text = "";
     }
 }
Пример #2
0
 private void GananciasNumericUpDown_ValueChanged(object sender, EventArgs e)
 {
     if (GananciasNumericUpDown.Value > 100)
     {
         MyErrorProvider.SetError(GananciasNumericUpDown, "Error");
         return;
     }
     else
     {
         PrecioNumericUpDown.Value = CalculosBLL.CalcularPrecio(CostoNumericUpDown.Value, GananciasNumericUpDown.Value);
     }
 }