i would like to eb able to select the whole row when a user clicks on any cell. however just doing msflexgrid.rowsel = MSFlexGrid.MouseRow doesnt select the whole row. how would i select the whole row? :confused:
plz help
Printable View
i would like to eb able to select the whole row when a user clicks on any cell. however just doing msflexgrid.rowsel = MSFlexGrid.MouseRow doesnt select the whole row. how would i select the whole row? :confused:
plz help
Set the FlexGrid's SelectionMode property to flexSelectiontByRow. This will handle the highlighting of rows when the user clicks or uses the keyboard.
If at any time in your code, the Row and/or Col properties are set, you may need to select the entire row manually.
Set the Col property equal to the first non-fixed row.
Set ColSel equal to the number of columns
Col = FixedCols
ColSel = Cols - 1
:eek2: iam sorry, i didnt realise it was that easy :rolleyes: