Report to RTF

G

Guest

My command button looks like this and works fine (stores to a SnapShot):

Dim stDocName As String

stDocName = "Not Completed JMC"

DoCmd.OutputTo acOutputReport, stDocName, "SnapShot "
Format ", FullPathName"

I want to store to and RTF, what is the format/syntax to do this? I have no
lines or boxes, just words.
 
R

Rick Brandt

bladelock said:
My command button looks like this and works fine (stores to a
SnapShot):

Dim stDocName As String

stDocName = "Not Completed JMC"

DoCmd.OutputTo acOutputReport, stDocName, "SnapShot "
Format ", FullPathName"

I want to store to and RTF, what is the format/syntax to do this? I
have no lines or boxes, just words.

The export to RTF doesn't support anything but text. Snapshot is the only
format that retains graphical objects. Stepen Lebans has a few solutions
you might want to look at on his web site.
 

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


Top