Beiträge von MarioIvan

    The structure of my report is:
    - Header
    - Text(Data)
    - Footer,
    I have a subtotals on the footer, but the footer never is showed.

    I have various querys that are used as group of data.

    On the WpSuperMerge I have:
    ============================

    Every BeforeProcessGroup I have the code:
    if Band.Alias = 'Acessories' then
    Begin
    ProcessGroup := not(DM_Prop.QryAcessories.EOF);
    IsLastRun := not(ProcessGroup);
    End

    Every AfterProcessGroup I have the code:
    Data.Next;

    Every OnGetText I have the code:
    if LowerCase(fName) = 'acessories.line' then
    Contents.StringValue := 'Totals'

    Now, the question ?
    Why the footer never is showed ?
    Can you help me ?