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.
[color blue]For Each[/color] oRow [color blue]As[/color] DataGridViewRow [color blue]In[/color] oDataGridView.Rows
[color blue]If[/color] booleanColorize [color blue]Then[/color]
[color blue]Dim[/color] oStyle [color blue]As New[/color] DataGridViewCellStyle()
oStyle.ForeColor = Color.Blue
oStyle.BackColor = Color.LightGray
oRow.Cells(4).Style = oStyle
[color blue]End If[/color]
[color blue]Next[/color]