Oct 6, 2001 #1 hinchdog Programmer Feb 14, 2001 380 US does anyone know how to programmtically highlight a single cell in msflexgrid. and also to unhighlight it?? thx
does anyone know how to programmtically highlight a single cell in msflexgrid. and also to unhighlight it?? thx
Oct 8, 2001 1 #2 Edd Programmer Jun 22, 2000 10 US 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. Upvote 0 Downvote
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.