P
pow67
Using Access 97 I have created a report which prints some names in
"BoldColor" and others in "DefaultColor" which are defined in the
following module:
Public Const BoldColor = vbBlue
Public Const DefaultColor = vbBlue
The code for the sub in my report is:
If (Me![BOLD] Or Me![Plus]) = True Then
Me![Name].ForeColor = BoldColor
Else
Me![Name].ForeColor = DefaultColor
End If
Everything looks fine on the Access screen however when I "save as HTML"
or publish to Word [Name] ignores "BoldColor" and prints all [Name] in
the "DefaultColor" .
Thanks in advance.
CW
"BoldColor" and others in "DefaultColor" which are defined in the
following module:
Public Const BoldColor = vbBlue
Public Const DefaultColor = vbBlue
The code for the sub in my report is:
If (Me![BOLD] Or Me![Plus]) = True Then
Me![Name].ForeColor = BoldColor
Else
Me![Name].ForeColor = DefaultColor
End If
Everything looks fine on the Access screen however when I "save as HTML"
or publish to Word [Name] ignores "BoldColor" and prints all [Name] in
the "DefaultColor" .
Thanks in advance.
CW