Example #1
0
 private void Report_Load(object sender, EventArgs e)
 {
     try
     {
         dgvReport.DataSource   = bugSolutionClass.getAllBugSolutions();
         lblTotalProjects.Text  = projectClass.countNumberOfProjects().ToString();
         lblTotalMembers.Text   = memberClass.totalMember().ToString();
         lblTotalRegBug.Text    = bugEntry.getAllBugs().Rows.Count.ToString();
         lblTotalSolvedBug.Text = bugSolutionClass.getAllBugSolutions().Rows.Count.ToString();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }