PDA

Click to See Complete Forum and Search --> : Screen size


Technocrat
Dec 19th, 2000, 12:40 PM
How do you get the current windows screen size. Ie 640 X 480, 800 X 600 etc.

Thanks

Vlatko
Dec 19th, 2000, 01:51 PM
int xcoord = GetSystemMetrics(SM_CXSCREEN); //height
int ycoord = GetSystemMetrics(SM_CYSCREEN); //width

Technocrat
Dec 19th, 2000, 02:23 PM
Thanks