Squicky
Lt. Commander
- Registriert
- Sep. 2002
- Beiträge
- 1.433
Hallo
Javacode:
Welcher Buchstabe / Tastaturknopf ist dies auf der deutschen Tastatur?
Habe auch schon mit Hilfe von google und bing etwas gefunden:
222 --> 0xDE --> VK_OEM_7
Used for miscellaneous characters; it can vary by keyboard.
For the US standard keyboard, the 'single-quote/double-quote' key
https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx
Aber meine Frage kann ich immer noch nicht beantworten.
:-(
Javacode:
Code:
...
public void keyPressed(KeyEvent e)
...
if ( e.getKeyCode() == 222) )
{
...
}
...
Welcher Buchstabe / Tastaturknopf ist dies auf der deutschen Tastatur?
Habe auch schon mit Hilfe von google und bing etwas gefunden:
222 --> 0xDE --> VK_OEM_7
Used for miscellaneous characters; it can vary by keyboard.
For the US standard keyboard, the 'single-quote/double-quote' key
https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx
Aber meine Frage kann ich immer noch nicht beantworten.
:-(