Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Highlight single cell in MSFlexgrid 1

Status
Not open for further replies.

hinchdog

Programmer
Feb 14, 2001
380
0
0
US
does anyone know how to programmtically highlight a single cell in msflexgrid. and also to unhighlight it??

thx
 
Try using the RowSel and ColSel properties.

Adding the following code:
Code:
MSFlexGrid1.RowSel = 0
MSGFlexGrid1.ColSel = 0
[\code]
will set cell (0,0) to be "Selected" and therefore highlighted.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top