Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
Declare Unicode Function MapVirtualKeyEx Lib "user32.dll" Alias "MapVirtualKeyExW" (uCode As UInteger, uMapType As UInteger, dwhkl As IntPtr) As UInteger
/// <summary>
/// The set of valid MapTypes used in MapVirtualKey
/// </summary>
public enum MapVirtualKeyMapTypes : uint
{
/// <summary>
/// uCode is a virtual-key code and is translated into a scan code.
/// If it is a virtual-key code that does not distinguish between left- and
/// right-hand keys, the left-hand scan code is returned.
/// If there is no translation, the function returns 0.
/// </summary>
MAPVK_VK_TO_VSC = 0x00,
/// <summary>
/// uCode is a scan code and is translated into a virtual-key code that
/// does not distinguish between left- and right-hand keys. If there is no
/// translation, the function returns 0.
/// </summary>
MAPVK_VSC_TO_VK = 0x01,
/// <summary>
/// uCode is a virtual-key code and is translated into an unshifted
/// character value in the low-order word of the return value. Dead keys (diacritics)
/// are indicated by setting the top bit of the return value. If there is no
/// translation, the function returns 0.
/// </summary>
MAPVK_VK_TO_CHAR = 0x02,
/// <summary>
/// Windows NT/2000/XP: uCode is a scan code and is translated into a
/// virtual-key code that distinguishes between left- and right-hand keys. If
/// there is no translation, the function returns 0.
/// </summary>
MAPVK_VSC_TO_VK_EX = 0x03,
/// <summary>
/// Not currently documented
/// </summary>
MAPVK_VK_TO_VSC_EX = 0x04
}
''' <summary>
''' The set of valid MapTypes used in MapVirtualKey
''' </summary>
Enum MapVirtualKeyMapTypes
''' <summary>
''' uCode is a virtual-key code and is translated into a scan code.
''' If it is a virtual-key code that does not distinguish between left- and
''' right-hand keys, the left-hand scan code is returned.
''' If there is no translation, the function returns 0.
''' </summary>
MAPVK_VK_TO_VSC = &H0
''' <summary>
''' uCode is a scan code and is translated into a virtual-key code that
''' does not distinguish between left- and right-hand keys. If there is no
''' translation, the function returns 0.
''' </summary>
MAPVK_VSC_TO_VK = &H1
''' <summary>
''' uCode is a virtual-key code and is translated into an unshifted
''' character value in the low-order word of the return value. Dead keys (diacritics)
''' are indicated by setting the top bit of the return value. If there is no
''' translation, the function returns 0.
''' </summary>
MAPVK_VK_TO_CHAR = &H2
''' <summary>
''' The uCode parameter is a scan code and is translated into a virtual-key code
''' that distinguishes between left- and right-hand keys. If there is no translation,
''' the function returns 0.
''' </summary>
MAPVK_VSC_TO_VK_EX = &H3
''' <summary>
''' The uCode parameter is a virtual-key code and is translated into a scan code.
''' If it is a virtual-key code that does not distinguish between left- and right-hand keys,
''' the left-hand scan code is returned. If the scan code is an extended scan code,
''' the high byte of the uCode value can contain either 0xe0 or 0xe1 to specify the extended scan code.
''' If there is no translation, the function returns 0.
''' </summary>
MAPVK_VK_TO_VSC_EX = &H4
End Enum
Notes:
None.
Tips & Tricks:
Please add some!
Sample Code:
Please add some!
Alternative Managed API:
Do you know one? Please contribute it!
The MapVirtualKeyEx API
7/15/2020 4:05:41 AM - derole-86.186.129.157
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).