Question about crystal report .NET

  • Thread starter Thread starter tc
  • Start date Start date
T

tc

hi all,

I would like to know how to export a cyrstal report to pdf by using the
crystal report viewer without prompt up a dialog for user to enter the file
name, i.e. I want to place the file path and name in my codings.
I know it can be done by using report document class.
However, I am using report web service. So I can specified a report name in
my case.
Any idea?
Besides, is there any newsgroup about C#.NET and crystal report .NET?
Because I am now learning to use crystal report and may have many problems.

Thanks
 
Look into ReportDocument.Export() method and ReportDocument.ExportOptions
property. That is, you first set each option in ExportOptions collection,
then call Export() method.

You can go NG microsoft.public.vb.crystal, or go to www.crystaldecisions.com
 
Thank you for your reply.
But I wonder if I use ReportDocument, I need to first load the rpt first,
right?
i.e. ReportDocument.Load(Report_path)
However, I am using Report Web Service. So there is not report path that I
can specified...
there is only a asmx path...I bind the asmx path to a report viewer to view
the report in client side.
So in my case, how can I export the report to pdf?
Thanks
 
Back
Top