Utf16ToAnsi$

Takes one parameter, Source

Description:

This command will convert the characters in the Source parameter from a UTF16 character set to an ANSI character set.

Example:

[New]        Init, Ansi

Init    =    LoadFile$ "C:\Work\Temp\MemTab.Organization.cnd.Init"

Ansi    =    Utf16ToAnsi$ Utf16

    If Ansi = Init
        ... (Init is ANSI char. set)
    Else
        ... (Init is not ANSI char. set)
    End If