View Single Post
 
Old 06-21-2010, 08:40 AM
zyzzyva57 zyzzyva57 is offline Windows 7 Office 2007
Expert
 
Join Date: Mar 2009
Location: Dawsonville, Ga (NE of Atl)
Posts: 355
zyzzyva57 is on a distinguished road
Default

Using VBA, you could try this -- It opens showing any ballons:

Sub OpenPrev()
With ActiveWindow.View
.ShowRevisionsAndComments = True
.RevisionsView = wdRevisionsViewFinal
'.RevisionsView = as you type here, you will see other things you can try to fine tune to what you want

End With

End Sub
Reply With Quote