Question about crystal report .NET

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
 
N

Norman Yuan

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
 
T

tc

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top