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

Making Text BOLD

Status
Not open for further replies.

sexydog

Programmer
Jul 9, 2002
176
0
0
GB
Hi

How can I make a particular row in a msflexgrid bold

thanks
 
I think this should set row 12 of your grid bold.

MsFlexGrid1.Row = 12
for j = 0 to MsFlexGrid1.Cols - 1
MsFlexGrid1.Col = j
MsFlexGrid1.CellFontBold = True
next

Best wishes,

Jonathan C
 
This should also do the trick,

MSFlexGrid1.Row = 12
MSFlexGrid1.Col = 0
MSFlexGrid1.RowSel = 12
MSFlexGrid1.ColSel = MSFlexGrid1.Cols - 1
MSFlexGrid1.FillStyle = flexFillRepeat
MSFlexGrid1.CellFontBold = True
Thanks and Good Luck!

zemp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top