well i want to copy a contet from file1.doc to file2.doc is there a spesific functions to do that?
Printable View
well i want to copy a contet from file1.doc to file2.doc is there a spesific functions to do that?
Sending Keystrokes to Other Programs may help you.
dim objwdap as word.application
dim objwddoc as word.document
objwddap.activedocument.saveas(file1,file2)
Use the Word Object Model and automate the program to do what you need. Check my Office Dev FAQ for code and explainations.
thanks it was helpful