I have an arraylist as my datasource.
Obviously you cannot directly bind this to the datagridview, so I have to go through each item in the collection, then add the items in the datagridview.
question is, how can I specify which column to place the current data in the datagridview?
so if we have col1, col2, col3, I wish to add the items in col2
Um, of course you CAN actually bind the ArrayList to the grid. The only requirement is that the objects in collection expose the values you want to display through public properties.