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 oldBackcolor As Long
oldBackcolor = fg.BackColorSel
fg.RowSel = fg.Row
fg.BackColorSel = RGB(255, 0, 0) ' change to red
'...do whatever and then set it back to original
fg.BackColorSel = oldBackcolor
For x = 1 To rs.Fields.count - 1
grd.Row = count 'count represents the row number
grd.Col = x
grd.CellFontBold = True
grd.CellBackColor = QBColor(2)
Next