Thanks Madawc and sorry for that.
I am using C# and supposed to generate reports using crystal in a pdf format and display the report in a web page.
Here's what I've done to convert the crystal report to pdf:
//cr1 is the actual report
DiskFileDestinationOptions diskDestination = new DiskFileDestinationOptions();
cr1.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
cr1.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
diskDestination.DiskFileName = "C:\\sample.pdf";
cr1.ExportOptions.DestinationOptions = diskDestination;
cr1.Export();
//below is my code for displaying the report in a web page
Response.ClearContent();
Response.ClearHeaders();
Response.ContentType ="application/pdf";
Response.WriteFile("C:\\sample.pdf";
Response.Flush();
Response.Close();
My question is what should I include/modify in the code to convert the crystal report to other language, like Chinese language, arabic, etc., and export the report to pdf file.
Thanks.