I'm a bit new to this vba stuff, so bear with me...
I am trying to save a Word template from vba into a specific folder. The template name is taken from an Access form, and I have no problem saving the template under that name. I just can't figure out how to designate the folder.
Here's a piece what I have - and where I'm assuming the code should go:
Any help would be wonderful!
Thanks-
I am trying to save a Word template from vba into a specific folder. The template name is taken from an Access form, and I have no problem saving the template under that name. I just can't figure out how to designate the folder.
Here's a piece what I have - and where I'm assuming the code should go:
Code:
Set docs = pappword.Documents
docs.Add strWordTemplate
With pappword
.Visible = True
.Activate
.ActiveDocument.SaveAs strSaveName
End With
Any help would be wonderful!
Thanks-