PrintTable

I would like to have some memos - like user created, date+time created... in my Page Header of PrintTable report.

How do I inlude it in TfrPrintTable Component?

Comments

  • edited December 2003
    Use TfrPrintGrid or TfrPrintTable component properties to populate data you need, for example:
    frPrintTable.PageHeader.Text := 'This is page: [PAGE#], Created: [DATE] [TIME]';
    
    and you can also set the title of this report ...
    frPrintTable.Title.Text := 'This is a quick GridPrint .... ';
    

Leave a Comment