Is it possible to catch VK_DELETE when procsessing WM_CHAR?
As we know, usually VK_DELETE will be caught when processing WM_KEYDOWN. Is there any way to catch VK_DELETE when processing WM_CHAR? Thanks for your inputs.
Re: Is it possible to catch VK_DELETE when procsessing WM_CHAR?
Re: Is it possible to catch VK_DELETE when procsessing WM_CHAR?
Quote:
Originally Posted by
Skizmo
What do you mean? Could you explain it more? Thanks for your inputs.
Re: Is it possible to catch VK_DELETE when procsessing WM_CHAR?
Try to handle WM_KEYDOWN instead.
Re: Is it possible to catch VK_DELETE when procsessing WM_CHAR?
Quote:
Originally Posted by
VictorN
Try to handle WM_KEYDOWN instead.
I know WM_KEYDOWN will catch VK_DELETE for sure but I am just curious if it is possible to catch in WM_CHAR. Thanks for your inputs.
Re: Is it possible to catch VK_DELETE when procsessing WM_CHAR?
Quote:
Originally Posted by
dullboy
What do you mean? Could you explain it more? Thanks for your inputs.
It the helppage that describes what you can do with the WM_CHAR message. It tells you if you can catch the VK_DELETE.