**RESOLVED ** exporting report to Word For Windows
I am experiencing a strange problem. I am trying to export a report to Word For Windows (2000) from my VB6 CR8.5 program (code follows). The document gets there, but when I bring it up in Word, it is blank, until I change the view to "print layout". Then the data is there, but it is grayed out. Any ideas?
Set Report = crxApplication.OpenReport("C:\CertificateofCompliance.rpt", 1)
Report.ExportOptions.FormatType = 14 'Word For Windows
Report.ExportOptions.DiskFileName = "C:\CertificateofCompliance.doc"
Report.ExportOptions.DestinationType = crEDTDiskFile
Report.Export False