Can someone please post an example of binding to a simple .net object?
I defined an object called Client with two properties, Id as an Int and Name as a string.
I populate a BindingList<Client> and set the DataSource property on the UltraGrid, nothing happens except all items are loaded but none are displayed.... I know this because the scrollbar indicates are a lot of rows but still nothing shows up in the grid, no columns or anything, completely blank.....
Are the ID and Name on the Client object public properties? They have to be properties, they can't just be public members.
Yep, that was it, haven't used C# in a while, been in the vb world for some time.
Cheers.