When a grid is in RowMode = True and MultiSelect = False is there an easier way to get the value of a column in the selected row? Currently, I do this:
Dim lRow As Long
Dim sValue As String
lRow = moGrid.SelItems.GetArray()(1).Row
sValue = moGrid.CellValue(lRow, "ColumnKey")
Would be great if there was some sort of one liner:
sValue = moGrid.RowSelCellValue("ColumnKey")