Link to home
Start Free TrialLog in
Avatar of DavidNPD
DavidNPD

asked on

Exporting a Crystal Report to HTML from within a VB6 Application

I have a crystal Reports application that is designed to run each night and move a couple of PDF files out to a network location each night, This works fine with the PDFs usign the code in the top section. I now want to add in another report that get moved out to the same locatoin but in the HTML format. When I run this code I recieve an error and it stops at the the "crptBBCadStatus.Export (False)" line. Can anybody spot what I am going wrong with the second set of code?

'This code works fine.....
crptCitations.ExportOptions.PDFExportAllPages = True
crptCitations.ExportOptions.FormatType = crEFTPortableDocFormat
crptCitations.ExportOptions.DiskFileName = ("\\Reports\citations.pdf")
crptCitations.ExportOptions.DestinationType = crEDTDiskFile
crptCitations.Export (False)
                       
'This code has a problem, and won't export like the above....
                       
crptBBCadStatus.ExportOptions.HTMLFileName = ("\\reports\pdf\BBCadStatus.html")
'I tried it with and without the above line
crptBBCadStatus.ExportOptions.FormatType = crEFTHTML32Standard
crptBBCadStatus.ExportOptions.DiskFileName = ("\\Reports\pdf\BBCadStatus.html")
crptBBCadStatus.ExportOptions.DestinationType = crEDTDiskFile
crptBBCadStatus.Export (False)
'If I take the above (False) away I get a naming dialog box.
ASKER CERTIFIED SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of DavidNPD
DavidNPD

ASKER

OK I am a little lost here, I just went in to run it again to give you the error and it is running perfectly. Let me look at this some more and see what I changed.
Must have just been a typo, I had checked all of your list already. Seems that it started working. Not sure why... Thanks for your reponse.
Thanks.

Glad I could help

mlmcc