View Single Post
 
Old 10-29-2014, 01:48 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Three things, none of which has anything to do with your error, which I cannot replicate:

1. An error in my code. Change:
.SaveAs2 FileName:=StrPth & "\Documents\NURS_353_Clinical_Evaluation_" & _
to:
.SaveAs2 FileName:=StrPth & "NURS_353_Clinical_Evaluation_" & _

2. As previously advised, the code works on the premise that your document has a formfield whose internal bookmark name is 'Client'. Your document has no such formfield. Not only that, your student name is contained in a content control in a table cell where, once the document has forms protection applied, you can't even update it.

3. Content controls and formfields are not designed to work together in the same document. You should use one or the other. You currently have one content control for the semester, another for the student name, another for the year, yet another for the clinical date and, finally, another for the Time & date stamp. All except your 'clinical date' content control have formfield equivalents. With formfields, your 'clinical date' could be typed into a formfield using date validation.

Fixing the run-time error may require nothing more than exiting and re-starting Word.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote