Invalid report file path

cathiec

Active member
Joined
Mar 8, 2004
Messages
28
i have used the Tutorial: Exporting to Multiple Formats
in the business objects help file. this teaches you how to create a report and export this to file formats such as .pdf, .xls,.doc etc.

I get the error "Invalid report file path. "

when i try to export the report.

it is in the procedure #

Public Sub ExportSetup()
exportPath = "C:\Exported\"
If Not System.IO.Directory.Exists(exportPath) Then
System.IO.Directory.CreateDirectory(exportPath)
End If
myDiskFileDestinationOptions = New DiskFileDestinationOptions()

myExportOptions = TestCrystalReport.ExportOptions
this is where the error fires

myExportOptions.ExportDestinationType = ExportDestinationType.DiskFile


End Sub


i really would appreciate any help on this.

thanks and regards
 
Back
Top