Example #1
0
 private void viewParticipantButton_Click(object sender, EventArgs e)
 {
     attendanceForm att = new attendanceForm(currentUser, currentEventID, attendanceForm.attendanceListState.participantList);
     att.Show();
 }
Example #2
0
 private void viewFacilitatorListBtn_Click(object sender, EventArgs e)
 {
     attendanceForm att = new attendanceForm(currentUser, currentEventID, attendanceForm.attendanceListState.facilitatorList);
     att.Show();
 }