Hi,
I want to output a report as an rtf file. I do this with:
I have my report in 8 point font. When it exports it to an rtf file, how can I change the font to 12 so when the rtf file automatically opens, all of the text in it is 12 point font. I tired:
...but it doesn't seem to work.
Thanks
P.S. - I know that I can set the font to 12 in the report itself, but I am having truncating issues and I want to see if this fixes it.
I want to output a report as an rtf file. I do this with:
Code:
DoCmd.OutputTo acReport, "Testing", acFormatRTF, "C:\Program Files\Test.rtf", True
I have my report in 8 point font. When it exports it to an rtf file, how can I change the font to 12 so when the rtf file automatically opens, all of the text in it is 12 point font. I tired:
Code:
DoCmd.OutputTo acReport, "Testing", acFormatRTF, "C:\Program Files\Test.rtf", True
[b]Selection.Font.Size = "12"[/b]
...but it doesn't seem to work.
Thanks
P.S. - I know that I can set the font to 12 in the report itself, but I am having truncating issues and I want to see if this fixes it.