Please help
I would like to open a word doc that's in the same folder as my vbs...i don't want to have to specify the whole path. What I have is the following:
set word = createobject("word.application")
word.visible=true
Word.Documents.Open "C:\Whatever\Other\max.docm"
I have tried:
set word = createobject("word.application")
word.visible=true
Word.Documents.Open "max.docm" and "\max.docm" and ".\max.docm"
none work...please help
I would like to open a word doc that's in the same folder as my vbs...i don't want to have to specify the whole path. What I have is the following:
set word = createobject("word.application")
word.visible=true
Word.Documents.Open "C:\Whatever\Other\max.docm"
I have tried:
set word = createobject("word.application")
word.visible=true
Word.Documents.Open "max.docm" and "\max.docm" and ".\max.docm"
none work...please help