isabel2005
Registered User.
- Local time
- Yesterday, 22:33
- Joined
- Oct 6, 2005
- Messages
- 19
Hi,
If my language fieldname is English, I want the report text in Blue. Otherwise, black.
I did this but got errors. Any help?
Private Sub Report_Open(Cancel As Integer)
If (CategoryName = "NONE") Then
[CategoryName].TextColor = "000000"
Else
[CategoryName].TextColor = "FFFFFF"
End If
End Sub
Is there a way for me to do this in the report?
Thanks,
Isabel
If my language fieldname is English, I want the report text in Blue. Otherwise, black.
I did this but got errors. Any help?
Private Sub Report_Open(Cancel As Integer)
If (CategoryName = "NONE") Then
[CategoryName].TextColor = "000000"
Else
[CategoryName].TextColor = "FFFFFF"
End If
End Sub
Is there a way for me to do this in the report?
Thanks,
Isabel
Last edited: