Click here to Skip to main content
15,884,836 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to get the index of a selected row in the data grid view in c#? And how to know the value of a hidden column from the data set of the grid related to the selected row?
Posted

int iddoctor =    dataGridView1.CurrentCell.RowIndex;
int id =int.Parse( mydataDataSet6.Tables[0].Rows[iddoctor][0].ToString()
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900