Click to See Complete Forum and Search --> : [RESOLVED] Resolution


Leite33
December 13th, 2008, 12:50 AM
Hi
I wanna ask how i can make a simple application getting with one button the resolution of the monitor that have the curret moment( for example 800x600) and return it to user by message

TheCPUWizard
December 13th, 2008, 12:52 AM
Did you even bother to search (http://www.codeguru.com/forum/search.php?searchid=2554758)existing information here on CodeGuru???

"Help comes best to those who show a serious effort"

juanpast
December 13th, 2008, 08:42 AM
http://www.codeguru.com/forum/showthread.php?t=466678

Regards

fred100
December 13th, 2008, 08:19 PM
Learn to Search on MSDN and Google Groups for such a question answered 150000 times...

Leite33
December 13th, 2008, 11:52 PM
Hey ok.. sorry.. If it bother you so much my question dont have to post..

TheCPUWizard
December 15th, 2008, 06:40 AM
Hey ok.. sorry.. If it bother you so much my question dont have to post..

The link I provided had the EXACT answer to your post. :rolleyes:

Igor Vartanov
December 25th, 2008, 05:23 AM
I wanna ask how i can make a simple application getting with one button the resolution of the monitor that have the curret moment( for example 800x600) and return it to user by messageLet's dissect this to some simpler statements: "make a simple application" must mean either console app or a dialog app
"with one button" ultimately means the application is a dialog
"get the resolution of the monitor" implies a single Window API call (http://msdn.microsoft.com/en-us/library/ms533265(VS.85).aspx) done in button click handler
"return it by message" must mean you design the form of "message" first: it might be a message box, or some text box in the dialog, or something else...
What is the one of the above that currently is a stopper for you?