I have a DataGridView that allows the user to click on any row, and it selects the entire row as desired. However, I’m having an issue getting he value of the FIRST Cell in that Row that is selected to a string value.
Previously when I only had 1 column being listed, it was easy:
$SelectedRealm = $ProdRealmsdatagridview.CurrentCell.Value.ToString()
Any help is appreciated.