vote up 2 vote down star

I'm using the Delphi function

StringCodePage

I call it on a string returned by a COM function (Acrobat Annotation getContents - see my other posts) and it returns 0. What is 0? Ansi?

Thanks

flag

2 Answers

vote up 5 vote down check

Code page 0 is CP_ACP, current Windows ANSI code page.

From Windows.pas:

{$EXTERNALSYM CP_ACP}
CP_ACP                   = 0;             { default to ANSI code page }

From MSDN:

CP_ACP

The current system Windows ANSI code page. This value can be different on different computers, even on the same network. It can be changed on the same computer, leading to stored data becoming irrecoverably corrupted. This value is only intended for temporary use and permanent storage should be done using UTF-16 or UTF-8 if possible.

link|flag
vote up 0 vote down

It might also be useful to know that you can change it (without reinstall): http://www.mihai-nita.net/article.php?artID=20050611a

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.