Hi
My datagridview has this two different columns, one being the datagridviewcomboboxcolumn, the other is datagridviewbuttoncolumn.. my problem is that i'm trying to get the data out of the combobox column and when the user push the button on the same row, it'd display the combobox value on a dialog box..
I've came across this code, but i believe it is in VB. I've tried to adapt to use it in C#, it doesn't really work at all.
DataGridView1.Rows(e.RowIndex).Cells(LeftModeColumnIndex).Value = ""<br/>
It'd be perfect if i can just use that code, but when i only type in.. "DataGridView1.Rows(e.RowIndex), the error shows up with "'System.Windows.Forms.DataGridView.Rows' cannot be used like a method."
Please Help!!