Hi, I am trying to format a flexgrid at runtime. I'm having a little trouble getting the effect I want. Here's what I've got:
For rowi = 1 To rScount
With fgTermCodes
.FillStyle = flexFillRepeat
.row = rowi
.col = 0
.ColSel = 3
.CellBackColor = &HC0FFFF
.CellFontBold = False
End With
Next rowi
For coli = 0 To 3
With fgTermCodes
.FillStyle = flexFillRepeat
.row = 0
.col = coli
.CellBackColor = &HC0C0C0
End With
Next coli
I basically want the top row to be in grey and the cells to have a 3D effect and the rest of the grid in yellow and have flat style gridlines. However, my first column has bold gridlines despite numerous attempts to reset this.
For rowi = 1 To rScount
With fgTermCodes
.FillStyle = flexFillRepeat
.row = rowi
.col = 0
.ColSel = 3
.CellBackColor = &HC0FFFF
.CellFontBold = False
End With
Next rowi
For coli = 0 To 3
With fgTermCodes
.FillStyle = flexFillRepeat
.row = 0
.col = coli
.CellBackColor = &HC0C0C0
End With
Next coli
I basically want the top row to be in grey and the cells to have a 3D effect and the rest of the grid in yellow and have flat style gridlines. However, my first column has bold gridlines despite numerous attempts to reset this.