how to bold only a cell in msflexgrid

User avatar
sal21
PlatinumLounger
Posts: 4334
Joined: 26 Apr 2010, 17:36

how to bold only a cell in msflexgrid

Post by sal21 »

how to set bold font only the cell NR?
You do not have the required permissions to view the files attached to this post.

User avatar
HansV
Administrator
Posts: 78233
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: how to bold only a cell in msflexgrid

Post by HansV »

Perhaps

Code: Select all

    With MSFlexGrid1
        .Row = 1
        .Column = 52
        .CellFontBold = True
    End With
Best wishes,
Hans