View Single Post
 
Old 06-11-2009, 05:14 AM
Bird_FAT's Avatar
Bird_FAT Bird_FAT is offline Office 2007
Expert
 
Join Date: Apr 2009
Location: South East
Posts: 271
Bird_FAT is on a distinguished road
Default

Open the word document,
Press Ctrl+F11 to open VBA Explorer
In the left hand menu double-click 'This Document'
Paste the following code in the new code window
Save and close, then give it a go

If it asks you to allow macros, go look here, at the bottom of the page, about Digitally Signing a documnt.

Code:
Private Sub Document_Open()
    ActiveWindow.View.ReadingLayout = Not ActiveWindow.View.ReadingLayout
End Sub
Reply With Quote