Example #1
0
 // Existing show form.
 public ShowListForm(string clubID, int year, int showNo)
 {
     ActiveShow = new Show(clubID, year, showNo);
     InitializeComponent();
     SetExistingData();
 }
Example #2
0
 // Refresh to existing show form.
 private void RefreshForm(string clubID, int year, int showNo)
 {
     ActiveShow = new Show(clubID, year, showNo);
     SetExistingData();
 }
Example #3
0
 // New show form.
 public ShowListForm(string clubID, int year)
 {
     ActiveShow = new Show(clubID, year);
     InitializeComponent();
     SetNewData();
 }
Example #4
0
 // Refresh to new show form.
 private void RefreshForm(string clubID, int year)
 {
     ActiveShow = new Show(clubID, year);
     SetNewData();
 }