예제 #1
0
        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);
            }
        }
예제 #2
0
        /*******************************************************************************************************************\
        *                                                                                                                 *
        \*******************************************************************************************************************/

        //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);
        }