Oct 6, 2001 #1 hinchdog Programmer Joined Feb 14, 2001 Messages 380 Location 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 Joined Jun 22, 2000 Messages 10 Location 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.