Jump to content

PostMessage/SendMessage CTRLDOWN + 1


Recommended Posts

Hello.

I've been trying to figure out how to postmessage/sendmessage ctrl down + a key. say, 1. Here is an example of how i thought it should work.

#include <WindowsConstants.au3>

$hWnd = "any window"

DllCall('User32.dll', "int", "PostMessage", "hwnd", $hWnd, "int", $WM_KEYDOWN, "int", 0x11, "int", 0)
DllCall('User32.dll', "int", "PostMessage", "hwnd", $hWnd, "int", $WM_KEYDOWN, "int", 0x31, "int", 0)
DllCall('User32.dll', "int", "PostMessage", "hwnd", $hWnd, "int", $WM_CHAR, "int", 0x31, "int", 0)
DllCall('User32.dll', "int", "PostMessage", "hwnd", $hWnd, "int", $WM_KEYUP, "int", 0x31, "int", 0)
DllCall('User32.dll', "int", "PostMessage", "hwnd", $hWnd, "int", $WM_KEYUP, "int", 0x11, "int", 0)

I've seen a few examples for (vb) but, i'm stuck with this.

Thanks.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

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