Problem:
Issue with Greek Characters when ANSI characters are used (on .Net).
In a .Net Winforms environment Greek characters are not displayed correctly when passed into a Winform.
Resolution:
This is caused by conversions taking place between OEM and ANSI character sets and UNICODE.
To resolve the problem you need to perform the following code when your application starts:-
call "PC_WIN_SET_CHARSET" USING BY VALUE 0
This sets up the COBOL system so that all conversions are ansi based.
