Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...