The following code was provided by MarkD & Francois from a Closed Thread 2004-03-10 18:55
DoCmd.OpenReport stDocName, acPreview Question (a2k (9.0.6926) SP-3 Jet 4.0 SP-7)
The following is code is in a Form that prints a report and cycles a Report Preview from Last Page to First Page
This code has worked without problems with Access 2000-2003 for the past 6 years
DoCmd.OutputTo acOutputReport, stDocName, acFormatTXT, _
strOutput, False
OpenReportToLastToFirstPagePreview (stDocName)
Public Function OpenReportToLastToFirstPagePreview(strRpt As String)
Dim strPages As String
Dim intLen As Integer
Dim n As Integer
DoCmd.OpenReport strRpt, acViewPreview
‘ Determine number of pages:
strPages = CStr(Reports(strRpt).Pages)
‘ Specify Zoom percentage:
DoCmd.RunCommand acCmdFitToWindow
DoCmd.SelectObject acReport, strRpt
‘ Use SendKeys to select Navigation box Page number:
SendKeys “{F5}”, True
SendKeys strPages, True
SendKeys “{ENTER}”, True
‘Pause 1 second, then go back to Page 1:
Sleep 1000
DoCmd.SelectObject acReport, strRpt
SendKeys “{F5}”, True
SendKeys “1”, True
SendKeys “{ENTER}”, True
SendKeys “%vzz” ‘ Alt v = Menu, z=Zoom, z = 100%
End Function ‘==================================
I’m trying to run the code with Access 2007 (12.0.6562.5005) SP2 MSO (12.0.6562.5003) in Access 2000 format and I’m getting the following message:
Microsoft Office Access
You can’t use the ApplyFilter action on this window.
You tried to use the ApplyFilter action or method, but you didn’t apply the filter to a table, query, form, or report.
You may have applied the filter to a form, but the form wasn’t open in Form or Datasheet view.
You may have applied the filter to a report but didn’t use the ApplyFilter action in a macro specified by the OnOpen property setting.
Use the SelectObject action or method to select the table, query, form, or report before applying the filter. OK
Any help would be appreciated
John