Legal Information |
|
In order to create a radio button double click on the symbol as shown below.
This will place a skeleton radio button on the form. The position and size of the button can be changed with the mouse.
The following values can be changed in the Properties table on the right of the screen
Radio buttons are mutually exclusive options that can either rbe named and addressed separately or with the same name and part of an array, so
If majmin.Item(i - 1).Value = True Then e = IIn this case there are a number of radio buttons named majmin in an array addressed with .Item().
Alternatively, each radio button can be named individually and the following will capture the status of each
If test.Value = True Then a = 1One button being name test and the other test1.
If test1.Value = True Then a = 2
Due to the mutually exclusive nature of radio buttons, if more than one group is required they need to be organised in frames. A frame is first defined and then the radio button defined within the frame. |
Search Knowledge Base | Feedback |