[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index] [Date Index] [Thread Index]
[SQR-USERS Info] [SQRUG Home Page]

Re: SQR Cover sheet...



In your Begin-Heading procedure put a conditional statement that does one
set of abbreviated headings if it is the first page or expanded headings if
it is NOT the first page.

Psuedo code:

        Begin-Heading

        If #first_page_switch = 0
           Do First_Page_Headings
           Let #first_page_switch = 1
        Else
           Do Report_Body_Headings
        End-If

        End-Heading





> -----Original Message-----
> From: Dean Theofanes [SMTP:dtheofan@OZEMAIL.COM.AU]
> Sent: Thursday, August 24, 2000 5:41 AM
> To:   SQR-USERS@list.iex.net
> Subject:      SQR Cover sheet...
>
> Is there an easy way to print a cover sheet for an SQR or else to suppress
> header information from printing on a page?
>
> I've written an SQC which pulls the fields and values off any run control
> panel to show which parameters have been selected, and it prints this
> information on Page 1 of the report.
>
> But the client doesn't like how the header information prints on the cover
> sheet as well.
>
> At the moment, I'm looking into using a Table of Contents, but I don't
> have
> an example SQR to look at and I keep getting errors.
>
> Cheers,
> Dean.