C
Color
how do i change the forecolor on a report
based on a certain condition. i've tried
the following but access2000 has no .forecolor.
please help.
Private Sub Detail_Print(Cancel As Integer, PrintCount As
Integer)
const Red = 255
const Black = 0
me.text1.forecolor = iif([text1]="X",Red,Black)
End Sub
based on a certain condition. i've tried
the following but access2000 has no .forecolor.
please help.
Private Sub Detail_Print(Cancel As Integer, PrintCount As
Integer)
const Red = 255
const Black = 0
me.text1.forecolor = iif([text1]="X",Red,Black)
End Sub