Get User's screen resolution: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Adding new author and category links.)
m (Added primary monitor warning)
 
Line 1: Line 1:
{{PageAuthor|Joel}}
{{PageAuthor|Joel}}
<div style="border: 1px solid #404000; background-color:#f8f880; color:#000; padding:0.5em;"><b>Note: </b>This gets the resolution of the primary monitor. The system may have other monitors.</div>


== The Script ==
== The Script ==

Latest revision as of 20:03, 28 September 2022

Author: Joel (talk, contrib)


Note: This gets the resolution of the primary monitor. The system may have other monitors.

The Script

; Get User screen resolution
 
OutFile "ScreenRes.exe"
Name "Get User Screen Resolution"
Caption "Get User Screen Resolution"
XPStyle "on"
 
Function ".onInit"
System::Call 'user32::GetSystemMetrics(i 0) i .r0'
System::Call 'user32::GetSystemMetrics(i 1) i .r1'
MessageBox MB_OK|MB_ICONINFORMATION "Screen Resolution: $\r$\n$0 X $1"
Quit
FunctionEnd
 
Section "-boo"
;
SectionEnd