Report to RTF

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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.
 
Back
Top