Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim i as Integer
With MSFlexGrid1
For i = 0 to .rows-1
.Row = i
.Col = 0
.ColSel = .Cols - 1
.FillStyle = flexFillRepeat
if i mod 2 = 0 And .row > 0 Then
.CellBackColor = vbYellow
Else
.CellBackColor = vbGreen
End If
Next i
End with