Question Custom Control Advice needed

ueberbill

New member
Joined
Oct 9, 2008
Messages
1
Programming Experience
3-5
I need to (or at least I think I do) write a custom control for a winform app we're working on. The control will take a datatable of people information (Name, a bunch of address fields, and titles) and display them in a numbered list that can be editable depending on outside parameters. The list would display like so:
VB.NET:
1  John McJohn
   123 Fake St.
   Fakola, FK 11111

2  Ellen Ellena
   234 Faque St.
   Not, NE 11111

Should I inherit from a datagrid/datagridview and override the bind event? Is there a better way? The multiline display of each data element would seem problematic for a grid, but I could be wrong.
 
Back
Top