|
|
|
|
|
<OEM string>.OemToAnsi (Function) In french: <Chaîne OEM>.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(MaChaîne1.OemVersAnsi())
Syntax
<Result> = <OEM character string>.OemToAnsi()
<Result>: ANSI character string Character string in ANSI format. <OEM character string>: OEM character string OEM string format to be converted. Remarks - <OEM string>.OemToAnsi does not convert characters with an ASCII code between 0 and 31 (control characters).
- Caution: Do not use the <OEM string>.OemToAnsi function with a string containing ANSI-specific characters (accented characters): these characters will be transformed and the result will be incorrect.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|