Ejemplo n.º 1
0
 private void frmTableViewer_Load(object sender, EventArgs e)
 {
     wbReport.DocumentText = lut.AsHtml();
     toolTip1.SetToolTip(tbRow, lut.RowTitle);
     toolTip1.SetToolTip(tbColumn, lut.ColumnTitle);
     toolTip1.SetToolTip(tbTable, lut.TableDescription);
 }
Ejemplo n.º 2
0
 private void setValues()
 {
     Common.setValue(cbMetZone, Globals.Project.RainfallZone);
     Common.setValue(tbRow, NDCIACN, 1);
     Common.setValue(tbColumn, DCIAP, 1);
     Common.setValue(tbTable, Efficiency, 1);
     Common.setValue(tbDepth, RetentionDepth, 2);
     wbReport.DocumentText = lut.AsHtml();
 }
Ejemplo n.º 3
0
        private void getValues()
        {
            RainfallZone = Common.getString(cbMetZone);
            NDCIACN      = Common.getDouble(tbRow);
            DCIAP        = Common.getDouble(tbColumn);
            RationalC    = Common.getDouble(tbTable);

            lut = StaticLookupTables.RationalCoeffientLookupTable(RainfallZone);
            wbReport.DocumentText = lut.AsHtml();
        }