// Load an existing category form. public CategoryListForm(string clubID, int year, int catNo) { ActiveCategory = new Category(clubID, year, catNo); InitializeComponent(); SetExistingData(); }
// Refresh to existing category form. private void RefreshForm(string clubID, int year, int catNo) { ActiveCategory = new Category(clubID, year, catNo); SetExistingData(); }
// Load a new category form. public CategoryListForm(string clubID, int year) { ActiveCategory = new Category(clubID, year); InitializeComponent(); SetNewData(); }
// Refresh to new category form. private void RefreshForm(string clubID, int year) { ActiveCategory = new Category(clubID, year); SetNewData(); }