M
Mmay
I am creating a word 2002 form to be used online as a fill-in application for
employment. I have written the macro below to use on exit for a form field
but would prefer it to work upon editing of the text such as checking yes in
a check box or entering name, address, etc. in a text box. Also, is there a
way to have the field shading removed upon entry of a form field so that
users will know where they are in the form?
I apply this macro in the form field properties to run on entry currently.
Sub Macro2()
'
' Macro2 Macro
' Macro recorded 3/14/2008 by mmay
'
ActiveDocument.Unprotect Password:=""
Selection.Font.Color = wdColorAutomatic
ActiveDocument.Protect Password:="", NoReset:=True, Type:= _
wdAllowOnlyFormFields
End Sub
employment. I have written the macro below to use on exit for a form field
but would prefer it to work upon editing of the text such as checking yes in
a check box or entering name, address, etc. in a text box. Also, is there a
way to have the field shading removed upon entry of a form field so that
users will know where they are in the form?
I apply this macro in the form field properties to run on entry currently.
Sub Macro2()
'
' Macro2 Macro
' Macro recorded 3/14/2008 by mmay
'
ActiveDocument.Unprotect Password:=""
Selection.Font.Color = wdColorAutomatic
ActiveDocument.Protect Password:="", NoReset:=True, Type:= _
wdAllowOnlyFormFields
End Sub