View Single Post
 
Old 12-15-2016, 07:16 AM
estrangedred estrangedred is offline Windows 7 64bit Office 2010 32bit
Novice
 
Join Date: Dec 2016
Posts: 5
estrangedred is on a distinguished road
Default

I provided the non macro version. The code that i use is
If Application.Documents.Count > 0 Then

With ActiveWindow

With .View
Status = .ShowPicturePlaceHolders
Select Case Status
Case False
.ShowPicturePlaceHolders = True
Case True
.ShowPicturePlaceHolders = False
End Select
End With

End With

Else
MsgBox "No documents open"
End If
Reply With Quote