11.12.2007, 17:41 | #1 |
Участник
|
DOS->Win
Axapta 3.0
Есть ли какая-нибудь возможность переводить текст из кодировки DOS в кодировку Windows (в противоположность WinApi::CharToOemBuff)? заранее спасибо |
|
12.12.2007, 15:55 | #2 |
Участник
|
наверное надо пискать в WinApi для Win32
|
|
12.12.2007, 16:07 | #3 |
MCTS
|
2 andy444
The OemToCharBuff function translates a specified number of characters in a string from the OEM-defined character set into either an ANSI or a wide-character string. (OEM stands for original equipment manufacturer.) This function supersedes the OemToAnsiBuff function. BOOL OemToCharBuff( LPCSTR lpszSrc, // pointer to string to translate LPTSTR lpszDst, // pointer to buffer for translated string DWORD cchDstLength // size of buffer ); Parameters lpszSrc Points to a buffer containing one or more characters from the OEM-defined character set. lpszDst Points to the buffer for the translated string. If the OemToCharBuff function is being used as an ANSI function, the string can be translated in place by setting the lpszDst parameter to the same address as the lpszSrc parameter. This cannot be done if the OemToCharBuff function is being used as a wide-character function. cchDstLength Specifies the number of characters to translate in the buffer identified by the lpszSrc parameter. Дерзайте
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
13.12.2007, 11:18 | #4 |
Участник
|
Спасибо!
все уже сделано намного проще - использована таблица перекодировки. |
|