I need to control the font of contents of a particular field in a unique situation during RunTime.
I expect I need something like ...
Code:
if tblMyTablePNo.value = 2 then
begin
fldOurInit.FontSize := 22;
fldOurInit.FontStyle := BoldItalic;
fldOurInit.FontColor := Red;
end;
.... which needless to say doesn't work.
Anyone? Thanks in advance.