I have the following code to change font colors:
Dim lngBlue As Long
lngRed = RGB(255, 0, 0)
lngBlue = RGB(0, 0, 255)
If [activate1desc] <> "" Then
[41a].Value = [activate1desc]
[41b].Value = [Activate1:]
[41a].ForeColor = lngBlue
[41b].ForeColor = lngBlue
End If
It changes the font on [41a] but errs out on [42b]
Error 438 object doesn't support this property or method
Both fields are text 100....
Thanks!
Dim lngBlue As Long
lngRed = RGB(255, 0, 0)
lngBlue = RGB(0, 0, 255)
If [activate1desc] <> "" Then
[41a].Value = [activate1desc]
[41b].Value = [Activate1:]
[41a].ForeColor = lngBlue
[41b].ForeColor = lngBlue
End If
It changes the font on [41a] but errs out on [42b]
Error 438 object doesn't support this property or method
Both fields are text 100....
Thanks!