I am trying to write some code in Word 2003 for a document / form that contains a check box and a text field. All I need is for the text field to be enabled once the checkbox has been checked. I cant seem to get this to work !
Any help would be appreciated
So far I have come up with the following but it doesnt work
If Selection.formfields("check1") = True Then
Selection.formfields("text1").Enabled = True
Else
Selection.formfields("text1").Enabled = False
End if
Thanks !