Imran
  • Imran
  • Member Topic Starter
2019-08-29T20:42:00Z
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")
Igor/10Tec
2019-09-04T11:16:32Z
sValue = moGrid.CellValue(moGrid.CurRow, "ColumnKey")