maestro1024 Posted July 31, 2008 Posted July 31, 2008 I looked around and don't see anything but I am hoping I missed something. Is there a quick/programtic way to get the PC Screen Resolution? I know I can go to control panel and maybe pull it out there but I am hoping there is a call I can make that will return the value to me. Anyone know if and where this might exist? Thanks
Tomb Posted July 31, 2008 Posted July 31, 2008 MsgBox(0, "", "Your Screen resolution is " & @DesktopHeight & " x " & @DesktopWidth)
Paulie Posted July 31, 2008 Posted July 31, 2008 MsgBox(0, "", "Your Screen resolution is " & @DesktopHeight & " x " & @DesktopWidth)Me thinks you mean: MsgBox(0, "", "Your Screen resolution is " & @DesktopWidth & " x " & @DesktopHeight) Width x Height
Tomb Posted July 31, 2008 Posted July 31, 2008 Me thinks you mean: MsgBox(0, "", "Your Screen resolution is " & @DesktopWidth & " x " & @DesktopHeight) Width x Heightyeah
maestro1024 Posted July 31, 2008 Author Posted July 31, 2008 Thanks guys that is exactly the sort of thing I was looking for.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now