I have created a windows form in which I have a grid “gridVerificationQ”. This grid contains different columns whose values gets all the bank account information a person have. I want to get all the values of a grid row that is selected, but I am finding a hard time in getting it. I know its a very small thing but still i would appreciate the help provided.
Share
Set DataGridView.MultiSelect=false and DataGridView.SelectionMode = FullRowSelect. This will make it so the user can only select a single row at a time.
Or use for loop