Hi
I have a data grid view with data from a SQL table. I need to use cellclick and get the text from a specifik coloumn in the selected row to use it in a new SQL query. How do I do that in vb.net?
Thanks Morten
Hi
I have a data grid view with data from a SQL table. I need to use cellclick and get the text from a specifik coloumn in the selected row to use it in a new SQL query. How do I do that in vb.net?
Thanks Morten
I solved it with this:
(Datagridview1.Item("Coloumname", e.RowIndex).Value.ToString)