0

When using the ExportToDisk method of ReportDocument it shrinks all of the fonts to 0.5pt than they were specified in the report. I'm creating a word document so specified the line of code as such:

myReport.ExportToDisk(CrystalDecisions.[Shared].ExportFormatType.WordForWindows, path)

I've also experimented with creating a RTF instead (using ExportFormatType.RichText) but to no avail. I seem to remember coming across a reason with a registry fix - but I've lost it now.

Must warn you this is a legacy system (.NET 1)

Any ideas?

Keltex
  • 26,220
  • 11
  • 79
  • 111
m.edmondson
  • 30,382
  • 27
  • 123
  • 206

1 Answers1

0

RTF format is a text file whose format is documented. You should easily be able to postprocess it to adjust any font properties. You can download the spec from Microsoft for further info.

Michael Dillon
  • 31,973
  • 6
  • 70
  • 106