Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have set my currency symbol to ¥0.00 but when I produce a report PDF it shows ?0.00 instead of ¥0.00.
has anybody any idea how to solve this?

Thanks in advance.

(I have used GIOS pdf.net dll )
and the code is

C#
PdfDocument myPdfDocument=new PdfDocument(PdfDocumentFormat.Letter_8_5x11_Horizontal);			
 
Font FontBold=new Font("Courier New",9,FontStyle.Bold);
PdfTextArea reportTest = new PdfTextArea(FontBold, Color.Black, new PdfArea(myPdfDocument, 50, 20, 750, 50), ContentAlignment.MiddleCenter, "testing Currency is ¥0.00 ");	
			
PdfPage newPdfPage=myPdfDocument.NewPage();
newPdfPage.Add(reportTest);
newPdfPage.SaveToDocument();
myPdfDocument.SaveToFile("Example3.pdf");
Posted

1 solution

just try it with a different font settings.....

Else abcpdf will be a good third party tool for this purpose.

Regards
Sebastian
 
Share this answer
 
Comments
N Haque 23-May-12 5:06am    
Thanks for your suggestion. But I can’t change existing dll right now.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900