I have been using this fantastic macro...
Sorry they won't let me post a link back to where I got the code from, but...
The code is this...
on Word 2003 then on 2007.
New we are using Word 2010 and the macro will work, but when you click on the print button it will toggle the very first Checkbox on everytime.
Any ideas?
Thanks in advance.
Sorry they won't let me post a link back to where I got the code from, but...
The code is this...
Code:
Dim oField As FormField
For Each oField In Selection.Frames(1).Range.FormFields
oField.CheckBox.Value = False
Next oField
Selection.FormFields(1).CheckBox.Value = True
End Sub
on Word 2003 then on 2007.
New we are using Word 2010 and the macro will work, but when you click on the print button it will toggle the very first Checkbox on everytime.
Any ideas?
Thanks in advance.