Question

help plz

So, I'm trying to get the client coordinates for my mouseX/mouseY variable on the application window. I am able to get the "screen coordinates", but now I need the "client coordinates".

Part of the code is in the picture. I'm not sure what method to call to get access to the "client coordinates"

Help is greatly appreciated.

Was it helpful?

Solution

Try ScreenToClient

POINT pt;
pt.x = pointerInfo.ptPixelLocation.x;
pt.y = pointerInfo.ptPixelLocation.y;
if (ScreenToClient(hTheWindowYouCareAbout, &pt)) {
    // Do something here...
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top