Get User's screen resolution: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.)
m (Added primary monitor warning)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{|align=right
{{PageAuthor|Joel}}
|<small>Author: [[{{ns:2}}:Joel|Joel]] ([[{{ns:3}}:Joel|talk]], [[{{ns:-1}}:Contributions/Joel|contrib]])</small>
 
|}
<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>
<br style="clear:both;">
 
== The Script ==
== The Script ==
<highlight-nsis>
<highlight-nsis>
Line 23: Line 23:
SectionEnd
SectionEnd
</highlight-nsis>
</highlight-nsis>
[[Category:System Plugin Examples]]

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