A
Angyl
I guess this is a two part question.
1. Is it possible to send a radio button value (true/false) to a checkbox
in the active document?
If so....How?
I've got a field of radio buttons (which will become check boxes if this
simply isn't possible, but I'd rather use radio buttons) in my user form and
I've got matching check boxes in the active document. I"m trying to get the
code to work so that if a radio button is checked, the check box in the
active document is also checked.
So far I have this, but it's doing nothing at all:
With ActiveDocument
If radLLC.Value = True Then
..FormFields("chkLLC").Value = True
Else
End If
End With
1. Is it possible to send a radio button value (true/false) to a checkbox
in the active document?
If so....How?
I've got a field of radio buttons (which will become check boxes if this
simply isn't possible, but I'd rather use radio buttons) in my user form and
I've got matching check boxes in the active document. I"m trying to get the
code to work so that if a radio button is checked, the check box in the
active document is also checked.
So far I have this, but it's doing nothing at all:
With ActiveDocument
If radLLC.Value = True Then
..FormFields("chkLLC").Value = True
Else
End If
End With