Jump to content

Report Help File Issues Here


guinness
 Share

Recommended Posts

You can add a link, such as http://en.wikipedia.org/wiki/Bitwise_operation

_GUICtrlHeader_OrderToIndex

Failure: iOrder

Failure: $iOrder

_GUICtrlHeader_SetItemDisplay

Returns the item display information

Set

_GUICtrlHeader_SetItemFlags

Returns the item flag information

Set

_GUICtrlHeader_GetItemFlags, _GUICtrlHeader_SetItemFlags

Missing GUICtrlCreateEdit, $iMemo - ???

_WinAPI_SetWindowPos

$HWND_NOTOPMOST - Places the window above all non-topmost windows

$HWND_TOPMOST - - - Places the window above all non-topmost windows

the same description

_WinAPI_WideCharToMultiByte, _WinAPI_MultiByteToWideChar

Add example

Edited by AZJIO
Link to comment
Share on other sites

_WinAPI_WideCharToMultiByte

The 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 codepage

A 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

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...