private void load_emps(DateTime d, DateTime f) { flpEmps.Controls.Clear(); foreach (string e in lbxEmp.Items) { ucEmp uc = new ucEmp(); uc.LoadEmp(_dt, d, f, e); flpEmps.Controls.Add(uc); } }
/*******************************************************************************************************************\ * * \*******************************************************************************************************************/ //GS161113 - not used private void load_emp(DateTime d, DateTime f, string emp_id) { flpEmps.Controls.Clear(); ucEmp uc = new ucEmp(); //uc.LoadEmp(_dt, d, emp_id); //flpEmps.Controls.Add(uc); uc.LoadEmp(_dt, d, f, emp_id); flpEmps.Controls.Add(uc); }