|
|
|
|
|
OemToAnsi (Function) In french: OemVersAnsi Converts an OEM string (DOS) to an ANSI string (Windows). Accented characters are different in both standards. The conversion consists in modifying the accented characters. Reminder: - ANSI is the character set used in Windows.
- OEM is the character set used in DOS (or Windows console).
New in version 2025MaChaîne1 is string
MaChaîne1 = Charact(130) + "t" + Charact(130)
Info(OemToAnsi(MaChaîne1))
Syntax
<Result> = OemToAnsi(<OEM character string>)
<Result>: ANSI character string Character string in ANSI format. <OEM character string>: Character string OEM string format to be converted. Remarks - OemToAnsi does not convert characters with an ASCII code between 0 and 31 (control characters).
- Caution: Do not use the OemToAnsi function with a string containing ANSI-specific characters (accented characters): these characters will be transformed and the result will be incorrect.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|