I am printing the current record on a form to Word 2000 with automation
The following code works OK if there is a value in all 4 fields however if middle name or suffix is missing Partner1 in the Word document is blank
What do I have to change in the following code to print Partner1 is there is a missing field?
.ActiveDocument.Bookmarks("Partner1").Select .Selection.Text = (CStr(Forms!frm_POS_DomesticPartnership!strFirstName)) & " " & _ (CStr(Forms!frm_POS_DomesticPartnership!strMiddleName)) & " " & _ (CStr(Forms!frm_POS_DomesticPartnership!strLastName)) & " " & _ (CStr(Forms!frm_POS_DomesticPartnership!strSuffix))
Thanks, John