OK, here's what I did in VB6 w/ Cr8.5:
Set crystalApplication = New CRAXDDRT.Application
Set crystalReport = crystalApplication.OpenReport(strReportFile, 1)
With crystalReport
.ExportOptions.DiskFileName = strExportFile
.ExportOptions.DestinationType = crEDTDiskFile
.ExportOptions.FormatType = crEFTWordForWindows ' crEFTPortableDocFormat
.ExportOptions.WORDWExportAllPages = True
.DisplayProgressDialog = False
.ParameterFields(1).AddCurrentValue strGroupName
' .RecordSelectionFormula = strSelection
.Export False
End With
Set crystalReport = Nothing
Set crystalApplication = Nothing
FYI, to the best of my knowledge, this requires CR 8.5 developer edition. What a piece of work is man, how noble in reason, how infinite in faculties, in form and moving how express and admirable . . . and yet to me, what is this quintessence of dust? -- Hamlet, Act II, Scene ii.