[RESOLVED] Flexigrid forecolor
Hi, Im sure this is ridiculously easy but im having a serious mind blank with this problem and need your assistance.
At the moment the user of my prog can select data in a flexigrid and the record number of the selected row is shown using the .Row, However its still not very obvious to the user that the row selected is actually selected therefore i want to change the forecolor of the selected row.
I know that the following will change the forecolor of the object
but how do i implement it so it just changes the forecolor of the selected row?
the flxgrd click sub as is:
VB Code:
Private Sub flxgrd_Click()
intrec = flxgrd.Row
lblrecord.Caption = "Record: " & intrec & " of " & intreccount
End Sub
any suggestions much appreciated