trancexx Posted November 27, 2012 Share Posted November 27, 2012 (edited) That's called radix indicator, standardized or not. Edited November 27, 2012 by trancexx ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
czardas Posted November 27, 2012 Share Posted November 27, 2012 (edited) I don't really think it needs changing. I love you 0111b radix indicator. Edited November 27, 2012 by czardas operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
AZJIO Posted November 27, 2012 Share Posted November 27, 2012 (edited) You can add a link, such as http://en.wikipedia.org/wiki/Bitwise_operation_GUICtrlHeader_OrderToIndexFailure: iOrderFailure: $iOrder_GUICtrlHeader_SetItemDisplayReturns the item display informationSet_GUICtrlHeader_SetItemFlagsReturns the item flag informationSet_GUICtrlHeader_GetItemFlags, _GUICtrlHeader_SetItemFlagsMissing GUICtrlCreateEdit, $iMemo - ???_WinAPI_SetWindowPos$HWND_NOTOPMOST - Places the window above all non-topmost windows$HWND_TOPMOST - - - Places the window above all non-topmost windowsthe same description_WinAPI_WideCharToMultiByte, _WinAPI_MultiByteToWideCharAdd example Edited December 3, 2012 by AZJIO My other projects or all Link to comment Share on other sites More sharing options...
Myicq Posted December 3, 2012 Share Posted December 3, 2012 _WinAPI_WideCharToMultiByteThe help entry for this function does not clearly indicate that parameter for Codepage can contain other values, and is the codepage of the destination encoding, not the source.Also an example is missing, and it would be nice to have included (or linked to) a reference of Windows ANSI Codepages (essentially mapping of Unicode in 8-bit Windows format)This example is from on same subject. jhcd gave the simple solution.#include <WinAPI.au3> $string = "שָׁלוֹם" ; shalom in Hebrew $out = _WinAPI_WideCharToMultiByte($string, 1255) ; explicit Hebrew codepage $string = "Москва" ; Russian known city $out = _WinAPI_WideCharToMultiByte($string, 1251) ; explicit Cyrillic codepageA list of Windows codepages is available f.ex here:http://en.wikipedia.org/wiki/Category:Windows_code_pages I am just a hobby programmer, and nothing great to publish right now. Link to comment Share on other sites More sharing options...
AZJIO Posted December 4, 2012 Share Posted December 4, 2012 Assignvarname | The name of the variable you wish to assign. Cannot be an array element. You can not use an array element as a name, that is, the variable is not created if the name contains a "[". My other projects or all Link to comment Share on other sites More sharing options...
Administrators Jon Posted December 4, 2012 Administrators Share Posted December 4, 2012 Locked for starting a new topic. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Recommended Posts