Ejemplo n.º 1
0
        private void btnRow_Click(object sender, EventArgs e)
        {
            double c = Common.getDouble(tbColumn);
            double t = Common.getDouble(tbTable);

            double r = lut.CalculateRowValue(c, t);

            Common.setValue(tbRow, r);
        }
Ejemplo n.º 2
0
 private void btnRow_Click(object sender, EventArgs e)
 {
     getValues();
     NDCIACN = lut.CalculateRowValue(DCIAP, Efficiency);
     if (NDCIACN < 30)
     {
         NDCIACN = 30;
     }
     if (NDCIACN > 98)
     {
         NDCIACN = 98;
     }
     setValues();
 }
Ejemplo n.º 3
0
 private void btnRow_Click(object sender, EventArgs e)
 {
     getValues();
     NDCIACN = lut.CalculateRowValue(DCIAP, RationalC);
     setValues();
 }