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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MSFlexGrid. Left Column Not Highlighted 1

Status
Not open for further replies.

bobbarker

Programmer
Dec 20, 2001
83
0
0
GB
When I select a row in my MSFlexGrid the contents are all highlighted with exception of the left cell.

I have set the FlexGrid as:
Highlight - always
FocusRect - Heavy
SelectionMode - By Row

How can I get the whole row to be selected?

Thanks in advance.
 
bobbarker,

Add the very left dummy column and set it's width to 0:

Private Sub Form_Load()
MSFlexGrid1.ColWidth(0) = 0
End Sub

vladk
 
Change the FocusRect property to 0 - flexFocusNone

Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top