PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → how to block STDI
how to block STDI
Started by Alex, Oct., 26 2004 1:10 PM - 1 reply
Posted on October, 26 2004 - 1:10 PM
how to block something in standatd input ( keyboard). i need to block key
combination "alt gr+a" but i don't know how.

any suggestions nicely seen
thx
Posted on October, 27 2004 - 1:38 PM
Hello Alex,

do a

Event("Handler", "*.*", WM_KEYDOWN)

somewhere in your project code and have a global procedure like below.

PROCEDURE Handler(nMsg, wParam, lParam)

and check then for you key codes.

HTH

Raimund

In article <417e0b94$1@news.pcsoft.fr>, Alex wrote:
how to block something in standatd input ( keyboard). i need to block key
combination "alt gr+a" but i don't know how.

any suggestions nicely seen
thx