start word doc in full screen view

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want a word document to start in full screen view ( No toolbars etc). But
I dont want to affect the way other documents open up in word. I have tried
using the /m parameter to run a macro at startup , but it was not recognised.
regards stuart
 
If the document is for your own use then add the following macros to that
document's template (not to normal.dot).

Sub AutoNew()
ActiveWindow.View.FullScreen = True
End Sub
Sub AutoOpen()
ActiveWindow.View.FullScreen = True
End Sub

If it is for distribution, then don't bother. You have no control over how
others view documents.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top