From ac4ef5df5ce2776fc4560a8ab8c4fd1ae96abaef Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 28 Nov 2002 13:08:15 +0000 Subject: [PATCH] /NOUNLOAD added git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1842 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/InstallOptions/Install Options.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Contrib/InstallOptions/Install Options.html b/Contrib/InstallOptions/Install Options.html index d766681b..5944e2a3 100644 --- a/Contrib/InstallOptions/Install Options.html +++ b/Contrib/InstallOptions/Install Options.html @@ -262,7 +262,9 @@ To finally show the tweaked dialog use the show function. Here is a little example:
-	InstallOptions::initDialog file.ini
+	# we don't want the DLL to unload so it will remember
+	# our ini file when we are trying to show it
+	InstallOptions::initDialog /NOUNLOAD file.ini
 	Pop $0
 	IntCmp $0 0 error
 		; $0 is now the IO dialog HWND