Nell'evento rptFormPippo_Load() hai provato a dare le dimensioni del Report?
Tipo:
codice:
'Imposta i margini del Report:
With Me
        .Orientation = rptOrientLandscape
        .TopMargin = 320
        .BottomMargin = 520
        .LeftMargin = 100
        .RightMargin = 100
        .ReportWidth = 11565
'Imposta larghezza del Report:
        If Me.WindowState = vbNormal Then
           .Width = Screen.Width    'Imposta la larghezza del form
           .Height = Screen.Height  'Imposta l'altezza del form
            .Left = (Screen.Width - .Width) / 2 'Centra il form orizzontalmente.
            .Top = (Screen.Height - .Height) / 2'Centra il form verticalmente.
        End If
    End With
Prova, può darsi che dipenda da questo.
Saluti.