Home General

XLS Spreadsheet Report

edited August 2010 in General
D2040 RB 12

Hi,

Do you have any sample code for Reporting in XLS format ?

Report has Header, Detail and Footer.

Thanks

Mike

Comments

  • edited August 2010

    Here is a simple example from the RBuilder help topic for
    TppXLSReportDevice....


    begin

    ppReport.AllowPrintToFile := True;
    ppReport.ShowPrintDialog := False;
    ppReport.DeviceType := 'XLSReport';
    ppReport.TextFileName := 'C:\Temp\myXLSReport.xls';

    ppReport.Print;

    end;



    --
    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com



    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
This discussion has been closed.