Change report font size at runtime
Hi
Could someone tell me how I can change a font size of a memo or band at runtime eg the user can select a font size at runtime before the report is shown
Thanks
Meee
Could someone tell me how I can change a font size of a memo or band at runtime eg the user can select a font size at runtime before the report is shown
Thanks
Meee
Comments
TfrxMemoView(frxReport1.FindObject('Memo1')).Font.Size := 12;
frxReport1.ShowReport;
change all the memos within a band.
and to go a step further if the band's parentfont property is set to true you can modify all by changing the page font only
How would I code that?
thanks
colin
thanks
how would I do the whole report rather than a band?
meee
Thanks
Meee