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 9 10 11 .. ..
1 p p p p p p L p p p .. ..

I want to do this in a professional manner.

Thanks