How do I designate the path when using SaveAs. I found that it saves it to
My Docs. How do I change the Path, while telling word that it's a text file
format at the same time? Thanks.

Re: Designate Path when using SaveAs by Jay

Jay
Mon Jun 26 18:29:19 CDT 2006

Use code like this:

With Dialogs(wdDialogFileSaveAs)
.Name = "C:\MyPath\MyDoc.txt"
.Format = wdFormatDOSText
.Show
End With

See http://www.word.mvps.org/FAQs/MacrosVBA/ChangeSaveAsPath.htm for
background.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Mon, 26 Jun 2006 14:02:02 -0700, Kou Vang
<KouVang@discussions.microsoft.com> wrote:

>How do I designate the path when using SaveAs. I found that it saves it to
>My Docs. How do I change the Path, while telling word that it's a text file
>format at the same time? Thanks.