Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Microsoft Office > Access and Access VBA > Access VBA
|
Access VBA Discuss using VBA for Access programming.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access VBA section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 18th, 2007, 02:26 PM
Registered User
 
Join Date: Jul 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Problems with Access 2007 Save as PDF/XPS Add-in

I believe I have found what appears to be a bug in Microsoft's "Save as PDF/XPS" add-in for Access 2007.

Given a scenario where code in a database containing a report calls code in another database (via a reference to the accdb) in order to generate report output in either PDF or XPS format, the called code generates the following error upon attempting to execute the DoCmd.OutputTo method:
Run-time error '2509':
Microsoft Office Access cannot find the object 'reportname'

I have no problem outputting to other file types, such as TXT or RTF via such an approach, nor do I have any problem generating XPS or PDF output from code in the database containing the report.

For instance, given the following two functions, contained in a referenced database (used as a common function library):
Code:
Public Function testRTF(rName As String, destFile As String)
  DoCmd.OutputTo acOutputReport, rName, acFormatRTF, destFile
End Function

Public Function testPDF(rName As String, destFile As String)
  DoCmd.OutputTo acOutputReport, rName, acFormatPDF, destFile
End Function
The first function succeeds when called from the database containing the report, but the second one fails with the aforementioned error. There is no problem, however, executing a DoCmd.OutputTo to PDF format from code actually contained in the same database as the report.

Can anyone else confirm this and suggest a workaround?!

I have so far confirmed this problem on two vastly different installations (one Vista, one Windows 2003).






Similar Threads
Thread Thread Starter Forum Replies Last Post
Add New Sharepoint 2007 Calendar type mashiamehdian SharePoint Development 0 February 4th, 2008 07:51 AM
Save As event not firing in Office 2007 kvreddy Word VBA 0 June 4th, 2007 09:42 PM
Access 2007 - save macro as event proc jesleon Access VBA 0 February 3rd, 2007 09:10 PM
save pdf jg22587hamburg.de VB Components 1 February 9th, 2004 05:48 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.