Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 01-20-2016, 04:06 PM
ep2002 ep2002 is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 64bit
Advanced Beginner
Word View isn't working
 
Join Date: Jun 2012
Posts: 83
ep2002 is on a distinguished road
Default Word View isn't working

Hi there,

Happy New Year everyone.

So I think this issue is because of an update

I bring up a file & the view of the file is left justified instead of centered.

If I click on one page, it decreases the zoom to less than 100%. If I put it back to 100%, it puts it back to left justified AND 2 page view instead of just one page.

HELP!!!



Thanks
Reply With Quote
  #2  
Old 01-20-2016, 06:02 PM
macropod's Avatar
macropod macropod is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Go to View|Zoom, set the view to 'One Page' and increase the Zoom setting to 100% (or more, if you prefer).
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #3  
Old 01-20-2016, 06:37 PM
ep2002 ep2002 is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 64bit
Advanced Beginner
Word View isn't working
 
Join Date: Jun 2012
Posts: 83
ep2002 is on a distinguished road
Default

Doesn't work.

There is no one page listed there.

Here's a SS.

And like I said above, if I click on the one page iton on the toolbar, it gives me one page no problem, but then it decreases it from 100% to 70%. If I increase it back to 100%, it moves the page left & it's done this with 2 files already, not just one.

And an old file that was working fine months ago.



Thanks
Attached Images
File Type: jpg Word%20One%20Page%20Issues.jpg (204.5 KB, 25 views)
Reply With Quote
  #4  
Old 01-20-2016, 06:44 PM
macropod's Avatar
macropod macropod is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Try clicking the 'Page Width' option, then gradually reducing the zoom via the slider in the lower-right corner of the screen.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #5  
Old 01-20-2016, 08:03 PM
ep2002 ep2002 is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 64bit
Advanced Beginner
Word View isn't working
 
Join Date: Jun 2012
Posts: 83
ep2002 is on a distinguished road
Default

Didn't change anything, still left justified.
Reply With Quote
  #6  
Old 01-20-2016, 10:22 PM
macropod's Avatar
macropod macropod is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Your profile says you're using the same Word version and OS as me, but it's clear from your screenshot you're not using Word 2010. That explains why you don't see the 'One Page' option. Please correct your profile.

That said, the following macros, added to your Normal template's 'ThisDocument' module, should take care of the display issues for any documents you subsequently open/create. As coded, the macro zooms the document to whichever is the lesser of the nearest 10% zoom increment that fits the screen and the preferred zoom, which is managed by the line:
Const lZoom As Long = 110
This sets the preferred zoom % to 110%. If you prefer something else, change the 110 to suit.
Code:
Private Sub Document_New()
Call Document_Open
End Sub
 
Private Sub Document_Open()
'Preferred zoom %
Const lZoom As Long = 110
With ActiveWindow
  'Ignore any errors
  On Error Resume Next
  'Reduce flickering while changing settings
  .Visible = False
  'Switch to a single view pane
  .View.SplitSpecial = wdPaneNone
  'Switch to Normal mode
  .View.Type = wdNormalView
  With .ActivePane.View.Zoom
    'Set for a 1-page view
    .PageColumns = 1
    'Initialize for best fit
    .PageFit = wdPageFitBestFit
    'Round down to nearest 10%
    .Percentage = Int(.Percentage / 10) * 10
    'Test zoom % and reduce to 120% max
    If .Percentage > lZoom Then .Percentage = lZoom
  End With
  'Switch to Print Preview mode
  .View.Type = wdPrintView
  With .ActivePane.View.Zoom
    'Set for a 1-page view
    .PageColumns = 1
    'Initialize for best fit
    .PageFit = wdPageFitBestFit
    'Round down to nearest 10%
    .Percentage = Int(.Percentage / 10) * 10
    'Test zoom % and reduce to 120% max
    If .Percentage > lZoom Then .Percentage = lZoom
  End With
  'Display the Rulers
  .ActivePane.DisplayRulers = True
  'Restore the window now that we're finished
  .Visible = True
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #7  
Old 01-21-2016, 01:07 PM
ep2002 ep2002 is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 64bit
Advanced Beginner
Word View isn't working
 
Join Date: Jun 2012
Posts: 83
ep2002 is on a distinguished road
Default

I'm sorry, I don't know what you are talking about. I AM on 2010.

I have no idea how to use macros & I'm still confused why this is an issue now & never was before.

Thanks anyway
Reply With Quote
  #8  
Old 01-21-2016, 01:40 PM
macropod's Avatar
macropod macropod is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Quote:
Originally Posted by ep2002 View Post
I AM on 2010.
Sorry 'bout that. And yes, I can see the 'One Page' option on your screen shot, despite you saying:
Quote:
Originally Posted by ep2002 View Post
Doesn't work.

There is no one page listed there.
I took your post at face value, and the only reason you wouldn't have the 'One Page' option is if you were using a different version.

For PC macro installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #9  
Old 01-23-2016, 03:11 PM
ep2002 ep2002 is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 64bit
Advanced Beginner
Word View isn't working
 
Join Date: Jun 2012
Posts: 83
ep2002 is on a distinguished road
Default

I meant in the box you told me to open, not uptop in the toolbar area.

I also stated in my original post that I tried all of this already (except the macros).

I'm still very very confused why I have to go to all this trouble when this was all working perfectly fine a few months ago or maybe as little as a few weeks ago. I don't remember the last time I launched Word.

I'll read the macros over when I get a chance.

Thanks
Reply With Quote
  #10  
Old 02-12-2016, 03:14 PM
ep2002 ep2002 is offline Word View isn't working Windows 7 64bit Word View isn't working Office 2010 64bit
Advanced Beginner
Word View isn't working
 
Join Date: Jun 2012
Posts: 83
ep2002 is on a distinguished road
Default

I think I know what the problem is.

The nav bar that's usually on the left is now missing. It's showing up occasionally on the left side & when it does, the page is centered properly at 100%.

Can someone tell me how to get it back so it stays?

Thanks
Reply With Quote
  #11  
Old 02-12-2016, 03:41 PM
Charles Kenyon Charles Kenyon is offline Word View isn't working Windows 8 Word View isn't working Office 2013
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,140
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

Right-click on the status bar at the bottom of the Window and activate the Zoom Slider.
Attached Images
File Type: png 00 deleteme 1.png (36.6 KB, 12 views)
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2013 view settings no longer working languageservicesco Outlook 0 10-28-2015 05:25 PM
Word View isn't working trouble with formating between print view and outline view johndill Word 2 10-17-2014 06:32 AM
non working day view mijam Project 1 03-29-2014 10:52 AM
Contact view filter not working gebobs Outlook 2 03-10-2014 06:28 AM
How can I fix a print view problem that causes it to stop working.. Excel 2007, Vista birdie123 Excel 0 08-18-2012 12:02 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 04:04 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft