Hallo Experten/innen,
ich möchte ein Programm über die Tastatur steuern, sodass ich mit der Taste „X“ z.B.: den Buchstaben, der gedrückt wurde anzeigen lasse.
Wie kann dies erreichen?
Danke schon im Voraus
Philip
Hallo Experten/innen,
ich möchte ein Programm über die Tastatur steuern, sodass ich mit der Taste „X“ z.B.: den Buchstaben, der gedrückt wurde anzeigen lasse.
Wie kann dies erreichen?
Danke schon im Voraus
Philip
Deine Angaben sind viel zu spärlich für eine sinnvolle Antwort, du mußt zumindest angeben welches Betriebssystem, (Windows,VMS…) welche Entwicklungsumgebung (VS (MFC), Borland…) und die art der Anwendung (MDI,SDI,DialogBased).
Oder möchtest du direkten zugriff auf den Tastatur-Controller?
Hi Paulus,
ich benutze Windows ME, benutze die Borland Entwicklerversion 1 und möchte ständig auf die Tastatur eingaben zugreifen können.
Philip
Um Asynchron die aktuell gedrücke Taste zu lesen benutze folgende WIN32 API Funktion (auszug aus der MSDN):
The GetAsyncKeyState function determines whether a key is up or down at the time the function is called, and whether the key was pressed after a previous call to GetAsyncKeyState.
SHORT GetAsyncKeyState(
int vKey // virtual-key code
);
Parameters
vKey
Specifies one of 256 possible virtual-key codes. For more information, see Virtual-Key Codes.
Windows NT: You can use left- and right-distinguishing constants to specify certain keys. See the Remarks section for further information.
Wenn du aber ‚Tastendrücke‘ aus der MessageQueue lesen möchtest mußt du auf die Message WM_KEYDOWN reagieren.
Auch hier wieder ein auszug aus der MDSN:
The WM_KEYDOWN message is posted to the window with the keyboard focus when a nonsystem key is pressed. A nonsystem key is a key that is pressed when the alt key is not pressed.
WM_KEYDOWN
nVirtKey = (int) wParam; // virtual-key code
lKeyData = lParam; // key data
Parameters
nVirtKey
Value of wParam. Specifies the virtual-key code of the nonsystem key.
lKeyData
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 for the current message. The value is the number of times the keystroke is auto-repeated 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 0 if the key is up.
31 Specifies the transition state. The value is always 0 for a WM_KEYDOWN message.
Return Values
An application should return zero if it processes this message.