View Full Version : Force a doc to always open in reading pane view
gersemale
10-12-2005, 04:12 AM
Hi folks,
Do you know is it possible using VBA or otherwise to force a document to always open in reading pane view, independant of their user settings?
Thanks,
Ger
MOS MASTER
10-13-2005, 01:58 PM
Would that be in Office 2003? :yes
TonyJollans
10-13-2005, 03:00 PM
I really hate people overridong my personal settings and don't know why you would want to do this but you you can put code in the documents's opene vent ..Private Sub Document_Open()
Me.Windows(1).View.ReadingLayout = True
End Sub
spaz9876
10-13-2005, 03:18 PM
I have the same problem. Every document I open, opens as Reading Layout and I always have to change it to Print Layout. Everyone in my department has the same problem. How do you get it to switch the default to Print Layout?
fumei
10-13-2005, 04:48 PM
I agree with Tony. The issue however, is documents that are sent to and from others.
The solution is to make code in the Document_Open event of your normal.dot. That way, whatever settings YOU want will always occur, regardless of whatever someone else has done. Well that is not strictly true, you could code a way around it. Nevertheless, put this in the Document_Open event of your normal.dot. All opening document will open in PrintLayout. Oh, but as version was not mentioned...this is may not work for some versions of Word. Syntax changes. The solution is to simply record a macro changing it to Print View, and then take THAT code and put it in the Document_Open event of normal.dot.
ActiveWindow.View.Type = wdPrintView
TonyJollans
10-14-2005, 02:57 AM
I have the same problem. Every document I open, opens as Reading Layout and I always have to change it to Print Layout. Everyone in my department has the same problem. How do you get it to switch the default to Print Layout?
That is the opposite of the original question and easily dealt with.
Under Tools > Options > General (tab), uncheck "Allow starting in Reading Layout"
spaz9876
10-14-2005, 07:06 AM
Oh my gosh I can't believe it was that easy. - Thank you Tony
MOS MASTER
10-14-2005, 03:54 PM
I really hate people overridong my personal settings and don't know why you would want to do this
Amen to that buddy! :yes
fumei
10-14-2005, 11:20 PM
Which is precisely why just about the only code I have in my normal.dot (rather than in either a document template, or a global template) is the code to make darn sure than documents DO open in MY settings.
MOS MASTER
10-15-2005, 04:54 PM
Which is precisely why just about the only code I have in my normal.dot (rather than in either a document template, or a global template) is the code to make darn sure than documents DO open in MY settings.
No need for that from my site...Our IT desk doesn't know a local Normal.dot overides the one in (Shared) Workgroup templates. :) (So my customizations are still mine and mine alone)
fumei
10-15-2005, 06:43 PM
:dau:
MOS MASTER
10-16-2005, 03:40 PM
:dau:
Are you the computer and am I the little yellow nono?? :rofl:
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.