> when F10 is pressed, I get the desired functionality but focus still gets > set to the menu. How can I prevent Focus from going to the menu after > processing?
To prevent default behaviour, you must return TRUE from PreTranslateMessage() to indicate that you have handled it and no further processing is required. Do NOT call the base class version of PreTranslateMessage() for that particular message (but DO for all others you are not handling!). -- Jason Teagle [EMAIL PROTECTED]
