View Single Post
 
Old 01-26-2015, 08:05 AM
gmaxey gmaxey is offline Windows 7 32bit Office 2010 (Version 14.0)
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,617
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

I can't reproduce your problem here. Creating a table with CCs and running

Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
On Error Resume Next
ActiveDocument.Unprotect
MsgBox "Test"
ActiveDocument.Protect wdAllowOnlyFormFields, True
End Sub
Runs without issue and I can type in all CCs.

Maybe you could try using editable regions and:

Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
On Error Resume Next
ActiveDocument.Unprotect
MsgBox "Test"
ActiveDocument.Protect wdAllowOnlyReading
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote