how do i get the current screen resolution?
This is a discussion on screen resolution within the Windows Programming forums, part of the Platform Specific Boards category; how do i get the current screen resolution?...
how do i get the current screen resolution?
Code:int cx, //screen width cy;//screen height cx = GetSystemMetrics(SM_CXFULLSCREEN); cy = GetSystemMetrics(SM_CYFULLSCREEN);