Hi all,
i am trying to convert a dataGridView cell to a control
i used the codes
Control dat = new Control();
dat = Convert.ChangeType(dataGridView1[colIndex,rowIndex], typeof(Control));
I am fetching the values of colIndex and rowIndes from a index code... the problem is even though i tried many codes to convert, it does not work
The expection i am gettting is
"Can not implicitly convert an object to a control. An explicit convertion exist(are u missing a cast?)"
Any help
thanks
vince