Frage zu WM_KEYDOWN/UP Message ?!



  • Hi,
    Ich hab mal nen bissel rum geschaut was man so zur Auswertung von Keyboardmessages braucht und ich habe jetzt ein Problem mit dem LPARAM, der irgendwie den Status der Taste beinhaltet. In der Help ist folgendes beschrieben:

    KeyData
    
    Value of 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: 
    
    Value	Description
    0-15	Specifies the repeat count. The value is the number of times the keystroke is repeated as a result of the user holding down the key.
    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 0 if the key is up.
    31	Specifies the transition state. The value is always 0 for a WM_KEYDOWN message.
    

    Aber wie werte ich das nun richtig aus. Wenn ich jetzt also prüfen möchte ob die Taste gedrückt oder losgelassen wurde muss ich ja schaun ob für
    lParam == 31, 1 oder 0 ist. Doch wie schreibt man das in dem Quelltext?

    Gruß Tobi.



  • Was dort angegeben wird, sind die einzelnen Bits des Gesamtwertes - die kannst du z.B. mit "lParam&(1<<31)==1" abfragen.

    (btw - Gedrückt vs. Losgelassen kannst du schon anhand der versendeten Nachrichten unterscheiden ;))


Anmelden zum Antworten