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 = vbRed
Public Const DefaultColor = vbBlack
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 publish to
Word 2000 the field, [Name] ignores "BoldColor" and prints all [Name] in
the "DefaultColor".
I really need to finish this project.
Thanks in advance.
CW
"BoldColor" and others in "DefaultColor" which are defined in the
following module:
Public Const BoldColor = vbRed
Public Const DefaultColor = vbBlack
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 publish to
Word 2000 the field, [Name] ignores "BoldColor" and prints all [Name] in
the "DefaultColor".
I really need to finish this project.
Thanks in advance.
CW