Subj : Re: CTRL key To : borland.public.cpp.borlandcpp From : Bruce Salzman Date : Mon Jul 19 2004 01:57 pm "mike" wrote in message news:40f9696b@newsgroups.borland.com... > > Why not intercept WM_CHAR or WM_KEYDOWN? > > Because they only allow for a single key to be pressed. i wanted a > combination of 2 keys. CTRL-x > > Hi, mike In addition to Bob's method, you can also use GetKeyboardState(); or GetKeyState(); to get the state the CTRL-R and CTRL-L keys. Regards, Bruce .