Why is it, that it say's in the Win32 Programmers Reference,
that:
SM_CXSCREEN,
SM_CYSCREEN Width and height, in pixels, of the screen.
when SM_CXSCREEN and SM_CYSCREEN actually is the x and y
COORDINATES of the WINDOW ? :confused:
that:
SM_CXSCREEN,
SM_CYSCREEN Width and height, in pixels, of the screen.
when SM_CXSCREEN and SM_CYSCREEN actually is the x and y
COORDINATES of the WINDOW ? :confused:
Yes if you use:
invoke GetSystemMetrics,SM_CXSCREEN
You will be returned the width of the screen in pixels, not the width of the desktop "Window" because the window can be sized by an application whereas the screen resolution may stay the same.
:alright:
invoke GetSystemMetrics,SM_CXSCREEN
You will be returned the width of the screen in pixels, not the width of the desktop "Window" because the window can be sized by an application whereas the screen resolution may stay the same.
:alright: