IList<t> and BindingSource

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hi All,

I'm really not sure what I am doing wrong here, but when I try to bind my
custom IList type to a bindingSource and thus to a datagridview there are no
columns or data in the grid.

I even put all the items in an arraylist and tried to bind to that and
nothing is showing up. Not sure what code I should post to help fix this,
but I really appreciate the help.

TIA

-CK
 
Chris said:
Hi All,

I'm really not sure what I am doing wrong here, but when I try to
bind my custom IList type to a bindingSource and thus to a
datagridview there are no columns or data in the grid.

I even put all the items in an arraylist and tried to bind to that and
nothing is showing up. Not sure what code I should post to help fix
this, but I really appreciate the help.

Did you set the DataGridView's AutoGenerateColumns property?
 
Back
Top