示例#1
0
 // Existing horse form.
 public HorseListForm(string clubID, int year, int horseNo)
 {
     ActiveHorse = new Horse(clubID, year, horseNo);
     InitializeComponent();
     SetExistingData();
 }
示例#2
0
 // Refresh to existing horse form.
 private void RefreshForm(string clubID, int year, int horseNo)
 {
     ActiveHorse = new Horse(clubID, year, horseNo);
     SetExistingData();
 }
示例#3
0
 // New horse form.
 public HorseListForm(string clubID, int year)
 {
     ActiveHorse = new Horse(clubID, year);
     InitializeComponent();
     SetNewData();
 }
示例#4
0
 // Refresh to new horse form.
 private void RefreshForm(string clubID, int year)
 {
     ActiveHorse = new Horse(clubID, year);
     SetNewData();
 }