Fabry Posted June 1, 2008 Posted June 1, 2008 I would know why some computers don't support unicode, for example: Msgbox(0,'Unicode Character',ChrW(25BA)) If your computer supports unicode you see a triangle, if not you see a rectangle. Is there method to know if the Compouter supports Unicode? A lan chat (Multilanguage)LanMuleFile transferTank gameTank 2 an online game[center]L'esperienza รจ il nome che tutti danno ai propri errori.Experience is the name everyone gives to their mistakes.Oscar Wilde[/center]
Andreik Posted June 1, 2008 Posted June 1, 2008 I would know why some computers don't support unicode, for example:Msgbox(0,'Unicode Character',ChrW(25BA))If your computer supports unicode you see a triangle, if not you see a rectangle.Is there method to know if the Compouter supports Unicode?I see a square. Somebody help us.
ProgAndy Posted June 1, 2008 Posted June 1, 2008 It's not only the PC, also the Font is important: CODE#include <GUIConstants.au3> #region - GUI Create GUICreate('ff') GUICtrlCreateLabel("Arial:",10,5) GUICtrlCreateInput(ChrW(0x25BA),100,5,100,50) GUICtrlSetFont(-1,16,0,0,"Arial") GUICtrlCreateLabel("Segoe UI:",10,60) GUICtrlCreateInput(ChrW(0x25BA),100,60,100,50) GUICtrlSetFont(-1,16,0,0,"Segoe UI") GUICtrlCreateLabel("Arial Unicode MS:",10,120) GUICtrlCreateInput(ChrW(0x25BA),100,120,100,50) GUICtrlSetFont(-1,16,0,0,"Arial Unicode MS") GUICtrlCreateLabel("Tahoma:",10,180) GUICtrlCreateInput(ChrW(0x25BA),100,180,100,50) GUICtrlSetFont(-1,16,0,0,"Tahoma") GUICtrlCreateLabel("Segoe Print:",10,180) GUICtrlCreateInput(ChrW(0x25BA),100,180,100,50) GUICtrlSetFont(-1,16,0,0,"Segoe Print") GUISetState() #endregion #region - GUI SelectLoop While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit EndSelect WEnd #endregion *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now