Well, it depends on what you want to modify.

Suppose you have a report with the table LedgerTrans and a total on
the field AmountMST. You can set this field in Italic on the total
line using the following:

1) Define a boolean footerDone in classDeclaration.
2) Override reportRun.send() and add the following lines just before
the call of super():


    ReportRealControl   reportRealControl;

    if (!footerDone)
    {
        footerDone = true;

        reportRealControl = this.design().sectionGroup(tableNum
(LedgerTrans)).section(ReportBlockType::Footer).control(fieldNum
(LedgerTrans,AmountMST));
        reportRealControl.italic(true);
    }

Hope this can help you.

Best regards,
Bj�rn M�ller Pedersen
Thy Data Center Development A/S

--- In [EMAIL PROTECTED], "Ibrahim Kilicarslan"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> How can i modify the AutoReport grandtotal fields.
>
> Thanks in advance...
>
> Ibrahim


Yahoo! Groups Sponsor
ADVERTISEMENT
click here


Yahoo! Groups Links

Reply via email to