beginner999
Programmer
How can I run a macro asp page and put that word document in a folder.
Thanks and I appreciate your help
Harini
Thanks and I appreciate your help
Harini
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
something like
MsWord word = new MsWord();
Document doc = word.LoadDocument("file name");
doc.ExecuteMacro("name of macro");
doc.Save();
//dispose of resources.