sambo
Registered User.
- Local time
- Today, 07:54
- Joined
- Aug 29, 2002
- Messages
- 289
I would like to Open a word Doc and Go To a specified Bookmark in that document.
The document will be recieved in the OnClick Event.
I want to do something like this...
On Click =GoToDoc("help.doc", "#CheckIn") 'The Call
Function GoToDoc(whatDoc As String, whatBookMark As String) 'the function
Application.Document.Open(whatDoc)
GoTo.BookMark(whatBookMark)
End Function
Is something like this possible.
And please don't suggest the Microsoft Help Workshop, I've been working with that all day to no avail, so I'm just creating my own method.
Thanks
The document will be recieved in the OnClick Event.
I want to do something like this...
On Click =GoToDoc("help.doc", "#CheckIn") 'The Call
Function GoToDoc(whatDoc As String, whatBookMark As String) 'the function
Application.Document.Open(whatDoc)
GoTo.BookMark(whatBookMark)
End Function
Is something like this possible.
And please don't suggest the Microsoft Help Workshop, I've been working with that all day to no avail, so I'm just creating my own method.
Thanks