SendMessage

Hallo zusammen

Ich habe ein Problem ich möchte einen Tastendruck unter windows 2000 simulieren und zwar nicht in meinem eigenen Programm sondern im System.

http://msdn.microsoft.com/library/default.asp?url= … /messagesandmessagequeuesfunctions/sendmessage.asp

HWND hWnd2 = HWND_BROADCAST;
UINT Msg = WM_KEYDOWN;
WPARAM wParam =;
LPARAM lParam =;

SendMessageA(hWnd2,Msg,wParam,lParam);

So habe ich es mal gemacht bei w und l weiß ich nicht was ich da reinschreiben muss ich habe hier geschaut

http://msdn.microsoft.com/library/default.asp?url= … nputreference/keyboardinputmessages/wm_keydown.asp

Aber ich blicke das nicht ganz die Taste die gedrückt werden soll ist die Zahlen 1 - 0

Vielleicht weiß ja jmd was danke !!

Hi Max,

ich habe folgendes in der MSDN-Lib gefunden:

wParam
Specifies the virtual-key code of the nonsystem key.

lParam
Specifies the repeat count, scan code, extended-key flag, context code, previous key-state flag, and transition-state flag, as shown in the following table.

Bit Description

015 Specifies the repeat count for the current message. The value is the number of times the keystroke is autorepeated as a result of the user holding down the key. If the keystroke is held long enough, multiple messages are sent. However, the repeat count is not cumulative.

16 - 23 Specifies the scan code. The value depends on the original equipment manufacturer (OEM).

24 Specifies whether the key is an extended key, such as the right-hand ALT and CTRL keys that appear on an enhanced 101- or 102-key keyboard. The value is 1 if it is an extended key; otherwise, it is 0.

25 - 28 Reserved; do not use.

29 Specifies the context code. The value is always 0 for a WM_KEYDOWN message.

30 Specifies the previous key state. The value is 1 if the key is down before the message is sent, or it is zero if the key is up.

31 Specifies the transition state. The value is always zero for a WM_KEYDOWN message.

=========================================
Und die KeyCodes sind in der Windows.h definiert mit VK_xxxx

Hope this helps
Peter

[Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]