Mar 19, 2003 #1 Atlas Programmer Joined Sep 20, 1999 Messages 26 Location US I would like to open an existing Mail Merge Document from a Visual Fox Pro Application, but am not sure where to begin. Any help would be appreciated. Thanks Atlas
I would like to open an existing Mail Merge Document from a Visual Fox Pro Application, but am not sure where to begin. Any help would be appreciated. Thanks Atlas
Mar 19, 2003 #2 Mike Gagnon Programmer Joined Apr 6, 2002 Messages 8,067 Location CA Atlas Mail Merge Document I'm not sure what that is, but if you use the following, you can open a word document: Code: oWord=createobject("word.application") oWord.Documents.Open("c:\welcome.doc") oWord.Visible=.t. Mike Gagnon If you want to get the best response to a question, please check out FAQ184-2483 first. Upvote 0 Downvote
Atlas Mail Merge Document I'm not sure what that is, but if you use the following, you can open a word document: Code: oWord=createobject("word.application") oWord.Documents.Open("c:\welcome.doc") oWord.Visible=.t. Mike Gagnon If you want to get the best response to a question, please check out FAQ184-2483 first.
Mar 19, 2003 Thread starter #3 Atlas Programmer Joined Sep 20, 1999 Messages 26 Location US Thanks will give this a try. Atlas Upvote 0 Downvote