There is a report running on French website. It's ASP.NET site. I've add "<globalization culture="fr-CA" />" in the web.config. The date is show French format on the web page. But when I get PDF report, it still show English format. How to fix it? Thanks.
In this scenario you may embed fonts in the PDF file which is being generated. Such as
-------------------
C1.C1Preview.Export.PdfExporter MyPdf = new C1.C1Preview.Export.PdfExporter();
MyPdf.Document = this.C1WebReport1.Report.C1Document;
MyPdf.EmbedTrueTypeFonts = true;
MyPdf.ShowOptions = true;
MyPdf.Export("c:\\MyPdfFile2.pdf");
------------------
I hope this helps.
-Dave.
<venuewest> wrote in message news:214866@10.0.1.98... There is a report running on French website. It's ASP.NET site. I've add "<globalization culture="fr-CA" />" in the web.config. The date is show French format on the web page. But when I get PDF report, it still show English format. How to fix it? Thanks. http://helpcentral.componentone.com/cs/forums/p/78366/214866.aspx#214866