Sub ReSetForColorFlexStatus() 'set the forcolor flexstatus from red to blue
Dim r As Integer
Dim c As Integer
With flexStatus
For r = 1 To .Rows - 1
For c = 0 To .Cols - 1
.CellForeColor = vbBlue
Next r
Next c
End With
End Sub
what is wrong ?
Open in new window