From cd61ccec21bddc4961ce7064fd78ea59c79d7f12 Mon Sep 17 00:00:00 2001 From: joostverburg Date: Sun, 29 Dec 2002 20:30:45 +0000 Subject: [PATCH] group radio buttons git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2016 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/InstallOptions/Readme.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Contrib/InstallOptions/Readme.html b/Contrib/InstallOptions/Readme.html index 750776d7..90f8af37 100644 --- a/Contrib/InstallOptions/Readme.html +++ b/Contrib/InstallOptions/Readme.html @@ -218,7 +218,8 @@ numbers from 1 to NumFields. Each Field section can contain the following values items in the list.
A "listbox" shows multiple items and can optionally allow the user to select more than one item.
A "CheckBox" control displays a check box with label.
- A "RadioButton" control displays a radio button with label.
+ A "RadioButton" control displays a radio button with label. + Always add a GROUP flag the first control in a group of radio buttons!
A "FileRequest" control displays a textbox and a browse button. Clicking the browse button will display a file requester where the user can browse for a file.
A @@ -385,6 +386,10 @@ numbers from 1 to NumFields. Each Field section can contain the following values This causes "Bitmap" controls to resize the image to the size of the control. Also useful to support custom DPI settings. + + GROUP + Always add this flag to the first control in a group + of "RadioButton" controls.

How to use

Modern UI