I have an Access Database that fills in a word template using bookmarks, I have been using:
.ActiveDocument.Bookmarks("ESSP"
.Select
.Selection.Text = (CStr(Forms!FrmDocCreator!txtESSP))
to fill the bookmarks on my template, what I cant figure out is, how can I save this template to a seperate location then fill in the bookmarks, without losing my template?
When I fill the bookmarks, the template is filled and it asks if I want to save changes, If I say yes, then I wont have a template.
.ActiveDocument.Bookmarks("ESSP"
.Selection.Text = (CStr(Forms!FrmDocCreator!txtESSP))
to fill the bookmarks on my template, what I cant figure out is, how can I save this template to a seperate location then fill in the bookmarks, without losing my template?
When I fill the bookmarks, the template is filled and it asks if I want to save changes, If I say yes, then I wont have a template.