Example #1
0
 private void mnuRetestList_Click(System.Object sender, System.EventArgs e)
 {
     DateChooserForm frm = new DateChooserForm();
     if (frm.ShowDialog() == DialogResult.OK)
     {
         ReportsForm frmRprt = new ReportsForm();
         frmRprt.ReportType = "RetestList";
         frmRprt.ShowDialog();
     }
 }
Example #2
0
 private void mnuMunList_Click(System.Object sender, System.EventArgs e)
 {
     ReportsForm frm = new ReportsForm();
     frm.ReportType = "MunicipalityList";
     frm.ShowDialog();
 }