How to Get Values from Datagridview row
I am able to use the following code to get a value a place it in the variable varTransID.
varTransID = TransactionsDataGridView.CurrentRow.Cells(0).Value varTransID = ClientsDataGridView.CurrentRow.Cells("TransactionID").Value Unfortunately the program fails and says it cannot find the column called TransactionID in the above line. IS there another way? Thanks
However, I am afraid that if the user rearranges the columns then the the column reference will pull fromt he wrong column. IS there any way to reference the column title so that I am sure I get teh right value. Perhaps something like this:

