In this article, we will focus on demonstrating you 4 ways to batch hide or show pictures in your Word document.
Now and then, you are likely to inherit a document with a large amount of pictures. Yet, you perhaps find them quite a distraction. They actually trip you from reading efficiently rather than being illustrative. Or if a picture is a shoot of texts or data, you will have difficulty telling apart the picture and document contents.
Batch Hide Pictures
To reduce the disruption as well as increasing navigating speed, you can utilize the following ways to hide them once and for good.
Method 1: Alter with Word Settings
Here is an example of file with 2 pictures. The first one is in “In line with text” wrapping style while the other one is in “Tight”.
- First of all, open Word and click “File” tab.
- Then click “Options” to trigger the “Word Options” dialog box.
- Click “Advanced”.
- Next scroll down to the “Show document content” part. Check the “Show picture placeholders” box and clear the “Show drawings and text boxes on screen” box.
- Lastly, click “OK”.
Now you can see the picture in “In line with text” style is converted to a frame box, and the second one is to totally hidden.
Method 2: Run Macro
- To start with, click “Developer” tab and then “Visual Basic” to open the VBA editor. An alternative way is to press “Alt+ F11”.
- Next click “Normal” project and then “Insert”.
- Then choose “Module” to get a new module.
- Double click it and paste the following codes:
Sub HideAllPictures() Dim nResponse As Integer nResponse = MsgBox("Do you want to hide all pictures?", 4, "Hide pictures") If nResponse = 6 Then With ActiveWindow.View If .ShowPicturePlaceHolders = False Or .ShowDrawings = True Then .ShowPicturePlaceHolders = True .ShowDrawings = False Else MsgBox ("All pictures have been hided.") End If End With End If End Sub
- Never forget to click “Run”.
- Now there will be a message box. Click “Yes” to batch hide all pictures.
If you receive documents containing multiple pictures on a regular basis, you may as well consider change “Sub HideAllPictures()” to “Sub AutoOpen”. Then, in the future when you open a file with pictures, you will automatically have the macro run.
Batch Show Pictures
Method 1: Undo the Changes in Word
- Use the same way to open “Word Options” dialog box first.
- Similarly, click “Advanced”. Only this time, you uncheck the “Show picture placeholders” box and tick the “Show drawings and text boxes on screen” box.
- Finally, click “OK”.
Method 2: Run VBA Codes
- Repeat the first 4 steps in “Run Macro” above.
- But replace the codes with the bellowing:
Sub ShowAllPictures() Dim nResponse As Integer nResponse = MsgBox("Do you want to show all pictures?", 4, "Show pictures") If nResponse = 6 Then With ActiveWindow.View If .ShowPicturePlaceHolders = True Or .ShowDrawings = False Then .ShowPicturePlaceHolders = False .ShowDrawings = True Else MsgBox ("No picture is hided.") End If End With End If End Sub
- Hit “Run” button.
- In the message box popping up, click “Yes” to start showing all pictures.
Since hiding all pictures action can affect every future file, you can change the “Sub ShowAlPictures()” to “Sub AutoClose()”. Then each time you close the document, if shall remind you of showing the hidden pictures.
Handle Word Problems
No software if foolproof. And the one most of us use every day, Word, is also susceptible to errors and giving our files to corruptions. Sure thing, none of it will be a problem if you possess regular backups. On the other hand, if you don’t, a preeminent Word corruption fix tool is what helps.
Author Introduction:
Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including Excel xlsx data repair tool and pdf repair software products. For more information visit www.datanumen.com
Leave a Reply