Not an easy way...
You can have multiple RadioGroup controls with only one element each and a handler where you uncheck the other elements when you check one element.
I canβt recall if thatβs even possible or if I used a checkbox to do this some years back
In the handler youβd do like this:
Sub DLGHandler_RadiogroupClicked
Dim nCtrl, i As Integer
nCtrl = TriggerControl()
For i = 1 to 5
If (BASE_CONTROL_ID + i) <> nCtrl Then
Alter Control (BASE_CONTROL_ID + i) Value 0
End If
Next
End Sub