P
PeterM
I have a continuous form with two fields on it, FieldA and FieldB. I need to
be able to set font styles for FieldA based on the value of FieldB for each
row in the form.
Something like:
If FieldB = "yes" then
Me.FieldA.FontBold = true
Else
Me.FieldA.FontBold = false
End If
I've put this code into the event OnCurrent and the code is executed only
once, not once for each row. I need the code executed for each row displayed.
Can anyone point me in the right direction please?
Thanks in advance for your help!
be able to set font styles for FieldA based on the value of FieldB for each
row in the form.
Something like:
If FieldB = "yes" then
Me.FieldA.FontBold = true
Else
Me.FieldA.FontBold = false
End If
I've put this code into the event OnCurrent and the code is executed only
once, not once for each row. I need the code executed for each row displayed.
Can anyone point me in the right direction please?
Thanks in advance for your help!