crystal10/vb6: how to imitate ExportOptions/PromptForExportOptions
Hi Guys! :wave:
1. I have this 2 reports that needs to be Exported
if i try to
Code:
Report1.Export true
Report2.Export true
i think it will try to get export options twice
if i try
Code:
Report1.Export true
Report2.Export false
i get error on 2nd line becuase i dont have ExportOptions
i was planning to use PromptForExportOptions but i guess its only for 1 Report
I just want to know if its possible and if yes, how it is done
to copy/imitate ExportOptions of one Report1 to another Report2
do i have to replace all write enabled properties of Report1.ExportOptions with Report2.ExportOptions'?
and then change ExportOptions.DiskFileName to another name
2. now if this is possible, Report1 and Report2 combined into 1 PDF file....then thats even better, i already raised this question but i really couldnt find any more clues as to how to do it, so im left with workarounds ...:(