Vbscript / Ms Office / Word File Save Location
Change the default file location used by MS Word.
Const intDocumentsPath = 0 Set objWord = CreateObject("Word.Application") Set objOptions = objWord.Options objOptions.DefaultFilePath(intDocumentsPath) = "C:" objWord.Quit
Please note that a disclaimer applies to any code on this page.
|