Beispiel #1
0
 private void btn_CalcularG_Click(object sender, EventArgs e)
 {
     try
     {
         float monto = local.CalcularTot(Convert.ToDateTime(textBox_FechaG.Text));
         MessageBox.Show("La ganancia del día " + textBox_FechaG.Text + " fue de $" + monto.ToString());
     }
     catch
     {
         MessageBox.Show("La fecha ingresada está vacía o en un formato incorrecto", "ERROR");
     }
 }