Hi,
Once the
Grid is Loaded, Loop thru the column and Highlight if matching, Say, you are Date Column is 2, Check this Code:
Dim i As Integer
For i = 1 To Grd.Rows-1
If ISDate(Grd.TextMatrix(i,2)) Then
If CDate(Grd.TextMatrix(i,2)) = Date Then
Grd.Col = 2
Grd.Row = i
Grd.CellFontBold = True
Grd.CellBackColor = vbBlue
Grd.CellFontColor = vbWhite
End If
Next
Change Control Name accordingly..
Regards
Veena