how to determine if a POINT is inside the area of a button? the POINT is in screen coordinates , and I have the handle of the window in which the button is and the handle of the button. I tried ::ScreenToClient(okBtnH , &tempPosition) where okBtnH is the handle of the button and the tempPosition is a POINT structure in screen coordinates. but it doesn't work. Is there any way to do this except manual calculation of the screen position of the button and then compare it with the POINT str ?
feedback
|
|
Are you sure that | |||||
feedback
|
|
If you are using MFC then you can just call the member function ScreenToClient. Why do you call the global version and are you sure the handle is the buttons handle? | |||||
feedback
|