best control to display this?

Jeevi

Member
Joined
Nov 2, 2005
Messages
15
Programming Experience
1-3
hi,
i want to display my records in the following structure(pls find the attachment) and my db structure looks like,

Id ------Name - Age - Dept.
---------------------------
Record1 Field1 Field2 Field3
Record2 Field1 Field2 Field3
Record3 Field1 Field2 Field3


i tried this using datagridview,listview and all. but i dont know how to achieve this structure.
any help would be greatly appreciated. thanks in advance.
 

Attachments

  • MyPic.JPG
    MyPic.JPG
    14.7 KB · Views: 40
I would suggest a UserControl of your own design fo reach individual record and then put instances of that UserControl into the cells of a TableLayoutPanel. There's an episode dedicated to the TLP in the VB Express video series.

http://msdn.microsoft.com/vstudio/express/vb/learning/
 
Back
Top