I am trying to build an employee data entry form that looks like this:
Employee Form ----------------------------------------------- --------------------------------------- | | | Name | | | | Picture | Department | | | | | Position | | | | | DOB | | | --------------------------------------- | ... repeat for every employee | ... | --------------------------------------- | | | Name | | | | Picture | Department | | | | | Position | | | | | DOB | | | --------------------------------------- | -----------------------------------------------
It's very easy to build this with Microsoft Access, but how can I build it using Winforms + C# + .NET 3.5?
I tried to use DataGridView
, but I could not make it look like my example above.