Exemple #1
0
 private void mbtnMedioEarnings_Click(object sender, EventArgs e)
 {
     if (frmDailyReport == null || frmDailyReport.Visible == false)
     {
         frmDailyReport = new frmDailyReport("Medio Internado", "Earnings");
         frmDailyReport.MdiParent = this;
         frmDailyReport.Show();
     }
 }
Exemple #2
0
 private void mbtnSchoolDebts_Click(object sender, EventArgs e)
 {
     if (frmDailyReport == null || frmDailyReport.Visible == false)
     {
         frmDailyReport = new frmDailyReport("School", "Debt");
         frmDailyReport.MdiParent = this;
         frmDailyReport.Show();
     }
 }