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); }
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(); }
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(); }