public Events_Form() { InitializeComponent(); db = new DBFunction(); db.LoadEventList(); ButtonEnabler(); ShowAll(); }
public Export_Form() { InitializeComponent(); db = new DBFunction(); su = new StringUtil(); db.LoadEventList(); eventList = db.GetEventList; FormPrepare(); }
public Register_Form() { InitializeComponent(); db = new DBFunction(); student = new Student(); eventList = new List<Event>(); su = new StringUtil(); btn_Add.Hide(); db.LoadEventList(); eventList = db.GetEventList; id = new Int32[eventList.Count]; name = new String[eventList.Count]; FormPrepare(); }