views:

34

answers:

2

Let say I'll create a DataGridView with four columns of types TextBox, Button, ComboBox, and Link. How would I populate something like this?

A: 

Check out the DataGridView.Rows property.

From MSDN:

You can use the Rows collection to manually populate a DataGridView control instead of binding it to a data source.

Austin Salonen
A: 

I actually found an example here: http://msdn.microsoft.com/en-us/library/y0wfd4yz.aspx I was surprise that it was difficult to find such example :-/

flamey