Greetings to all
I turn to you for help with the following:
I need to change the style of a font based on the value of a table field, if that field contains the value of 'A', then the font should be strikethrough and if not, it should be normal.
I have tried placing the following script in the memo component that I want to affect, but it gives me an error indicating that the property does not exist.
if [mdmovi."movi_anulado"]='A' then
Font.Style.fsStrikeOut:=True
else
Font.Style.fsStrikeOut:=False
Additional to this, I also need to change the font color for the same component.
Thank you for any support you can give me.