Error 2282 in Microsoft Access
5 pts.
0
Q:
Error 2282 in Microsoft Access
Hello all, I have a database that sends a report by email in pdf format automatically by pressing a button. My problem is that whilst this works perfectly on my computer, I get an error "2282 - the format in which you are attempting to output the current object is not available." on other users computers. I have checked that all the computers have Adobe Reader 8. I would be most greatful for any help on this one.

Following is the code i have behind the button

 DoCmd.OpenReport "ActionItem", acViewPreview, "", "


Software/Hardware used:
Microsoft Access
ASKED: Sep 23 2009  4:26 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
25 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
Do you have this installed? 2282 indicates that the software probably isn't installed. When I get 2282 I call an error handling proceedure that installs the download on this linked page.
Personally I perfer the

DoCmd.SendObject acSendReport, REPORTNAME, acFormatPDF, TOADDRESS, CCADDRESS, BCCADDRESS, Subject, Message, False

to send an email or the

DoCmd.OutputTo acOutputReport, REPORTNAME, acFormatPDF, PATH & FILENAME & ".pdf", False

if I'm goint to upload the file.
Carl
Last Answered: Oct 6 2009  4:00 PM GMT by Cwitte   25 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Cwitte   25 pts.  |   Oct 6 2009  4:02PM GMT

Ahh my link didn’t post. Let me try again.

and in plain text incase of another problem
 <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&displaylang=en" title="http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&displaylang=en" target="_blank">http://www.microsoft.com/downloads/detai…</a>

 
0