Displaying & editing a two dimensional array in DataGridView
-
I have a double[,] two dimensional array that i would like to display and edit in a DataGridView control, but I am having difficulty binding the data to the DataGridView control. Can someone point me in the right direction on how to do this? - henrik
-
I have a double[,] two dimensional array that i would like to display and edit in a DataGridView control, but I am having difficulty binding the data to the DataGridView control. Can someone point me in the right direction on how to do this? - henrik
Hi, Does your array implements IList interface?
-
Hi, Does your array implements IList interface?
No it does not, but if implementing IList solved my problem then perhaps I will need to do this. How would I proceed if the IList interface is implemented? - Henrik