cannot process WM_KEYUP for property window
-
I have a property sheet , I am not able to process the WM_CTLCOLOR msg for the tabes in the sheet can anyone , I am also not able to process the WM_KEYUP message can anyone tell me how to do that for property windows. take care vikas
Vikas Amin EATON PUNE
-
I have a property sheet , I am not able to process the WM_CTLCOLOR msg for the tabes in the sheet can anyone , I am also not able to process the WM_KEYUP message can anyone tell me how to do that for property windows. take care vikas
Vikas Amin EATON PUNE
(1)there is no simple method to change table color of sheet - some people use "owner-draw" to do that. (2)is the message for sheet or controls on sheet or pages? microsoft blocks some key messages for edit-box etc. in MFC dialog, property-sheet and property-page, I don't know why they do that. for a controls: try PreTranslateMessage(...) to see if the message is processed, otherwise, go to its parent (sheet or pages) to get the message then post it to the control - I did this in Win95/98 time.