From 1f2a811c476496ab6efc174936efc35ab1504d0e Mon Sep 17 00:00:00 2001 From: ramon18 Date: Tue, 17 Jun 2003 18:55:34 +0000 Subject: [PATCH] Documentation of link control and new options for text control git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2654 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/InstallOptions/Readme.html | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/Contrib/InstallOptions/Readme.html b/Contrib/InstallOptions/Readme.html index 611aef04..3820d4d5 100644 --- a/Contrib/InstallOptions/Readme.html +++ b/Contrib/InstallOptions/Readme.html @@ -233,7 +233,10 @@ numbers from 1 to NumFields. Each Field section can contain the following values An "Icon" control displays an icon. Use no Text to use the installer icon.
A "Bitmap" control displays a bitmap.
- A "GroupBox" control displays a frame to group controls.
+ A "GroupBox" control displays a frame to group + controls.
+ A "Link" control displays a static hot text and when user click the + control the contents of the state is shellexecuted. eg: Http://... or mailto:...
Text @@ -411,6 +414,22 @@ numbers from 1 to NumFields. Each Field section can contain the following values ONLY_NUMBERS Used by "Text" controls. Forces the user to enter only numbers into the edit box. + + MULTILINE + Used by "Text" controls. Causes the control to accept multiple-lines. + + WANTRETURN + Used by "Text" controls with multiple-line. Specifies that a carriage return be inserted when the user presses the ENTER key + while entering text into the text box. + + HSCROLL + Used by "Text" controls with multiple-line. Show a horizontal scrollbar. + + VSCROLL + Used by "Text" controls with multiple-line. Show a vertical scrollbar. + + READONLY + Used by "Text" controls. Prevents the user from entering or editing text in the edit control, but allow the user to select and copy the text.

How to use

Modern UI