views:

24

answers:

0

Is there any way to "force" my report to print out the "layout" even if the fields are empty. I have one report, which is always there. and 8-9 sup-reports which not always will be filled, but I want them to be shown anyway because they will be send out to a customer and filled, and then send back? is there any easy way of doing so? (and PDF export is of course out of the question)

[UDATE] This is my code:

Private Sub eksportIntern_Click()
On Error GoTo Err_eksportIntern_Click

    Dim stDocName As String

    stDocName = "AVR Intern"
    DoCmd.Output acOutputReport, _
                    stDocName, _
                    acFormatRTF, _
                    "AVR/" & Me.[Rapport nr] & ".doc", _
                    False        

Exit_eksportIntern_Click:
    Exit Sub

Err_eksportIntern_Click:
    MsgBox Err.Description
    Resume Exit_eksportIntern_Click

End Sub