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