I'm a (retarded) novice, need to finish the macro below (2003), to have it
auto enter a filepath, to wit:
G:\Children Probation\programs\CONSUMER ACTIVITY\
at File Name: in the Save As dialog box, and leave the insertion point for
user to complete the file name manually.


Sub templatesopen()
' templatesopen Macro

Documents.Add Template:= _
"G:\Children Probation\programs\CONSUMER ACTIVITY\Consumer
Activity.dot", _
NewTemplate:=False, DocumentType:=0
Dialogs(wdDialogFileSaveAs).Show

End Sub

Very VERY grateful!!!!

Re: help finishing "save as" macro by Steve

Steve
Mon Sep 17 16:56:48 CDT 2007

http://word.mvps.org/FAQs/MacrosVBA/ChangeSaveAsPath.htm

Steve


"Lindsay" <Lindsay@discussions.microsoft.com> wrote in message
news:2AC45FB0-426C-435E-9C34-F6E83A00A1A4@microsoft.com...
> I'm a (retarded) novice, need to finish the macro below (2003), to have it
> auto enter a filepath, to wit:
> G:\Children Probation\programs\CONSUMER ACTIVITY\
> at File Name: in the Save As dialog box, and leave the insertion point for
> user to complete the file name manually.
>
>
> Sub templatesopen()
> ' templatesopen Macro
>
> Documents.Add Template:= _
> "G:\Children Probation\programs\CONSUMER ACTIVITY\Consumer
> Activity.dot", _
> NewTemplate:=False, DocumentType:=0
> Dialogs(wdDialogFileSaveAs).Show
>
> End Sub
>
> Very VERY grateful!!!!