|
-
Dec 19th, 2000, 01:40 PM
#1
Thread Starter
Frenzied Member
How do you get the current windows screen size. Ie 640 X 480, 800 X 600 etc.
Thanks
MSVS 6, .NET & .NET 2003 Pro
I HATE MSDN with .NET & .NET 2003!!!
Check out my sites:
http://www.filthyhands.com
http://www.techno-coding.com

-
Dec 19th, 2000, 02:51 PM
#2
Frenzied Member
Code:
int xcoord = GetSystemMetrics(SM_CXSCREEN); //height
int ycoord = GetSystemMetrics(SM_CYSCREEN); //width
-
Dec 19th, 2000, 03:23 PM
#3
Thread Starter
Frenzied Member
MSVS 6, .NET & .NET 2003 Pro
I HATE MSDN with .NET & .NET 2003!!!
Check out my sites:
http://www.filthyhands.com
http://www.techno-coding.com

Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|