Info: Print Rowlines Bold Style
I have a DetailData with more columns (fields).
I would like Bold print in the first column (description-string) if the contents of the second column (total-integer) is 'null'.
Can anyone help me?
Thanks
I would like Bold print in the first column (description-string) if the contents of the second column (total-integer) is 'null'.
Can anyone help me?
Thanks
Comments
[img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> I solved the problem procedure DetailDataOnBeforePrint(Sender: TfrxComponent); begin If <Fattura RigoFatturaLavori."Quantita"> = 0 then begin Memo1.Font.Style := 1; end else begin Memo1.Font.Style := 0; end; end; Thanks all![/img]