Re: How to make arrow key move over Help button in CProperty***



Arrow key is not going to move the focus over to next control. Its not
windows behavior and is not supported by default in Win32/MFC. If you
want this behavior(which sounds odd), you will need to implement it
yourself(PreTranslateMessage or using accelerator keys).

Keep in mind about the ambiguity this may cause when you hit an arrow
key and you are in am edit control. You would expect to move to next
character but your logic would move it to next control.

The default behavior in windows is intuitive to users and I wouldnt
mess around with arrow key.

-----------
Ajay Kalra
ajaykalra@xxxxxxxxx

.