NsDialogs SetImageOLE: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Reverted edits by 217.144.192.4 to last version by Kichik) |
|||
Line 1: | Line 1: | ||
best theme | |||
http://silktime.net/articles/snipe-point-little-cayman.html only snipe point little cayman | |||
== Attribution == | == Attribution == |
Revision as of 20:17, 4 March 2010
best theme http://silktime.net/articles/snipe-point-little-cayman.html only snipe point little cayman
Attribution
This header is the result of the forum discussion "NSD_CreateBitmap, NSD_SetImage - JPEG support?" ( http://forums.winamp.com/showthread.php?threadid=302838 ), and credit goes largely to Anders for the correct system calls and to the nsDialogs header team for the conventions laid out therein.
Header
- Main download link: NsDialogs_setImageOle.zip (1 KB).
MD5: 8bc171309240a9e4aec577b848d3c9be | Filesize: 1,019B
Example
outfile 'nsdialogs_setimageole.exe' !include 'nsdialogs.nsh' !include 'nsdialogs_setimageole.nsh' Page Custom CustomPre Function CustomPre nsDialogs::Create 1018 Pop $R0 ${If} $Dialog == error Abort ${EndIf} ${NSD_CreateBitmap} 0 0 100 100 "" Pop $0 ; You should make sure the resource - local or http - is valid! ${NSD_SetImageOLE} $0 "http://nsis.sourceforge.net/mediawiki/skins/nsis/logo.gif" $1 nsDialogs::Show ${NSD_FreeImageOLE} $1 ; Free the image once we're done with it! FunctionEnd Section SectionEnd