Open Word (saved and new) docs in Web view by default?

P

Paul

I have seen macros on getting Word to over-ride the "last saved view" setting
that Word opens docs in (at least I think that is the method of opening up
docs).

However, I've only seen options for normal or print layout view. Can I use
those same macros, but then substitute "web" for print or normal? I'd try
that out myself but I don't want to blow my my computer. :)
--
Paul

MS Office Pro 2003
XP Home SP3
Dell Inspiron 1501
 
J

Jay Freedman

Paul said:
I have seen macros on getting Word to over-ride the "last saved view"
setting that Word opens docs in (at least I think that is the method
of opening up docs).

However, I've only seen options for normal or print layout view. Can
I use those same macros, but then substitute "web" for print or
normal? I'd try that out myself but I don't want to blow my my
computer. :)

Of course you can do that... and don't worry about messing up--anything you
do with the view in a macro can be undone.

To do this, include the following line in an AutoNew macro and in an
AutoOpen macro:

ActiveWindow.View.Type = wdWebView

If you look at the macros at the end of
http://www.gmayor.com/installing_macro.htm, those use a construction like

With ActiveWindow.View
.Type = wdPrintView 'select page/print layout view

which you would change to

With ActiveWindow.View
.Type = wdWebView 'select web view

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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

Top