M
Muhammad Arif
Dear All,
The following line code capture the key "T"
mModifier = 0
RegisterHotKey(m_appMW.Hwnd, 1, mModifier, VK_T)
The following line of code capture the key combination "ALT + T"
mModifier = 1
RegisterHotKey(m_appMW.Hwnd, 1, mModifier, VK_T)
The following line of code must capture the key combination "SHIFT +
T" but don't capture ...... why ?
mModifier = 4
RegisterHotKey(m_appMW.Hwnd, 1, mModifier, VK_T)
Can some one help me to capture the "SHIFT + T" combination through
RegisterHotKey function.
Regards,
Muhammad Arif
The following line code capture the key "T"
mModifier = 0
RegisterHotKey(m_appMW.Hwnd, 1, mModifier, VK_T)
The following line of code capture the key combination "ALT + T"
mModifier = 1
RegisterHotKey(m_appMW.Hwnd, 1, mModifier, VK_T)
The following line of code must capture the key combination "SHIFT +
T" but don't capture ...... why ?
mModifier = 4
RegisterHotKey(m_appMW.Hwnd, 1, mModifier, VK_T)
Can some one help me to capture the "SHIFT + T" combination through
RegisterHotKey function.
Regards,
Muhammad Arif