Hi All
I have an Access file in MSAccess 2000. I have a button which when
clicked opens a Word help file. My question is, "is there a way to
return to the previous Access page other than by *File Exit* in Word"
What I need I guess is a button on the word document with the command
File Exit in it. How do you do this in word?
Regards
Kevin Martin
Nikos Yannacopoulos - 04 Jul 2005 08:17 GMT
Kevin,
Although this is a Word question, not an Acess one:
Make the Control Toolbox toolbar visible, and drag and drop the command
button control in your doc; right-click on it, and select View Code. Add
code:
Application.Quit
or:
Documents(ActiveDocument).Close False
depending on what you want to do.
HTH,
Nikos