Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Const BOLD = 700
Const NORMAL = 400
If [Your Control Name] = "Closed" Then
[Your Control Name].ForeColor = vbRed
[Your Control Name].FontWeight = BOLD
Else
[Your Control Name].ForeColor = vbBlack
[Your Control Name].FontWeight = NORMAL
End If
End Sub
|