Link to home
Start Free TrialLog in
Avatar of JFrye
JFrye

asked on

MS FlexGrid

In a flexgrid of 4 columns and 10 rows, how can I make the data in the last row (row 9) bold?
Avatar of g0rath
g0rath

MSFlexGrid1.Row = 9
MSFlexGrid1.CellFontBold = True
Avatar of JFrye

ASKER

That only made the single cell (Row 9, Col 1) Bold. I need Row 9, Cols 0-3 Bold, please.
ASKER CERTIFIED SOLUTION
Avatar of g0rath
g0rath

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JFrye

ASKER

Ok, I figured it out:

Private Sub BoldRow()
   
    Dim intBold As Integer
   
    For intBold = 0 To 3
        grdInfo.Row = 9
        grdInfo.Col = (intBold)
        grdInfo.CellFontBold = True
    Next intBold

End Sub
Avatar of JFrye

ASKER

Thanks! I actually figured it out seconds after you posted a reply. Hehe... Your first answer definately jump-started me, so you would get the points anyways. Thanks again!
No problem, sometimes it takes nothing more that that Ah Hah! Experience