APPLE BOSS

M

mark r

My boss has an APPLE.
He wants at the very least emailed reports from my ACCESS tables.
I could generate SNAPSHOT views but that only works on IBMs.

How do I email him reports he can download?

He would also like a working copy of the table.
How do I send him a runtime version of the table he can scroll through
 
P

PieterLinden via AccessMonster.com

mark said:
My boss has an APPLE.
He wants at the very least emailed reports from my ACCESS tables.
I could generate SNAPSHOT views but that only works on IBMs.

How do I email him reports he can download?

He would also like a working copy of the table.
How do I send him a runtime version of the table he can scroll through

Probably your best bet is to output the reports to PDF. If you don't have
2007, which I think can do this natively, Stephen Lebans has code to do it on
his site.
www.lebans.com

Or you could crank it to RTF, which will open into Word...
Sub ExportReportToRTF(strReportName As String, ByVal strOutputFileName As
String)
On Error GoTo ExportToRTF_Err

DoCmd.OutputTo acReport, strReportName, "RichTextFormat(*.rtf)",
strOutputFileName, True, "", 0


ExportReportToRTF_Exit:
Exit Sub

ExportReportToRTF_Err:
MsgBox Error$
Resume ExportReportToRTF_Exit

End Sub
 
M

mark r

Thanks,

I do have A2007, but when I PRINT, I only get options for FAX, OR EPSON, etc
where do I find the PDF option, that would be great.
 
N

NG

Hi,

you fist have to download the pdf module from the Microsoft site. After
installing that you have the option save as... PDF in the save as menu.
 
C

Chegu Tom

You could also purchase or download one of many pdf writers that become a
printer option when installed.

If you go this way instead of the access module you can make pdfs from other
applications as well (anything that can print can make a pdf)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

MDE 1
Please help me choose a product for the task 2
MDE 14
table of contest 7
Help 1
Hidden attribute 5
How do I give nicknames to my email? 1
Weekly Report 2

Top