Employee attendance form with DataGridView
Hello,
I want to know how can we make Employee attendance form using DataGridView. I have a database table that contains EmpId, Date and Status(e.g. P for present, L for Leave). DataGrid will contain one row per employeeID.
EmpId 1 2 3 4 5 6 7 8 9 10 .. ..
1 p p p p p p L p p p .. ..
I want to do this in a professional manner.
Thanks
|