PDF (VisPDF component) Problem with DecimalSeparator in Delphi/C++Builder2009
- by Katsumi
Hello. I use VisPDF component Delphi/C++Builder 2009 and show text with
ShowMessage(FloatToStrF(1.23, ffFixed, 6, 2)); // Output: 1,23 (right!)
UnicodeString Text = "Hello world!";
VPDF->CurrentPage->UnicodeTextOutStr( x, y, 0, Text);
ShowMessage(FloatToStrF(1.23, ffFixed, 6, 2)); // Output: 1.23 (false!)
afer UnicodeTextOutStr() the…