Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== IsUnicode function ====== ==== Description ==== Returns whether or not the Win32 Unicode APIs are being called. If running on a Windows NT class operating system (Windows NT, Windows 2000, Windows XP), will return TRUE$ (1). If running on a Windows 98 class (Windows 98, Windows Millenium Edition), will return FALES$(0). ==== Syntax ==== //bUnicode// = **IsUnicode**() ==== Note ==== On a Windows NT class machine, you can force Windows 98 class behavior by using the /WIN98 command line switch upon starting OpenInsight. ==== Example ==== <code> declare function isunicode if IsUnicode()= 1 then call msg(@window, "Win32 Unicode APIs are being called.") end else call msg(@window, "Win32 ANSI APIs are being called.") end </code> guides/programming/programmers_reference_manual/isunicode.txt Last modified: 2024/06/19 20:20by 127.0.0.1