Help..... I use the hyperlink on my Access97 application to open a instruction file(Microsoft Word). How can I make the Word application closes itself when when the Access application is closed?
Printable View
Help..... I use the hyperlink on my Access97 application to open a instruction file(Microsoft Word). How can I make the Word application closes itself when when the Access application is closed?
If you created an object for word to open your instruction file you can set the object to nothing, then quit the word application.
Dim WordApp As Word.Application
'your code here
Set WordApp = Nothing
WordApp.quit