Acrobat 7 blocks Global Template Save

G

Greg

Users have reported that after installing Acrobat 7 that changes made
to normal.dot are not being saved. One of the posters confirmed that
Shift+File>SaveAll before closing Word resolved his problem. I am
wonder if the following AutoExit would work? I don't have Acrobate 7
(open to donations) so I can't test it here.

Sub AutoExit()
'Place this macro in Normal and other document templates
Dim myTemplate As Template
Dim myString As String
Dim oChgAlert As Balloon
Set myTemplate = ActiveDocument.AttachedTemplat­e
myString = myTemplate.Name
If myTemplate.Saved = False Then
Set oChgAlert = Assistant.NewBalloon
With oChgAlert
.Heading = "Microsoft Word Alert!!"
.Text = "Changes have been made that effect the" _
& " Global template, " & myString & ". Do you want" _
& " to save these changes?"
.Button = msoButtonSetYesNo
.Animation = msoAnimationGetAttentionMinor
If .Show = msoBalloonButtonYes Then
myTemplate.Save
End If
End With
End If
End Sub
 
C

Charles Kenyon

The simplest work-around for Acrobat 7 (other than uninstall) is the
registry change recommended by Graham
Mayor.http://www.gmayor.com/lose_that_adobe_acrobat_toolbar.htm.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.

Users have reported that after installing Acrobat 7 that changes made
to normal.dot are not being saved. One of the posters confirmed that
Shift+File>SaveAll before closing Word resolved his problem. I am
wonder if the following AutoExit would work? I don't have Acrobate 7
(open to donations) so I can't test it here.

Sub AutoExit()
'Place this macro in Normal and other document templates
Dim myTemplate As Template
Dim myString As String
Dim oChgAlert As Balloon
Set myTemplate = ActiveDocument.AttachedTemplat­e
myString = myTemplate.Name
If myTemplate.Saved = False Then
Set oChgAlert = Assistant.NewBalloon
With oChgAlert
.Heading = "Microsoft Word Alert!!"
.Text = "Changes have been made that effect the" _
& " Global template, " & myString & ". Do you want" _
& " to save these changes?"
.Button = msoButtonSetYesNo
.Animation = msoAnimationGetAttentionMinor
If .Show = msoBalloonButtonYes Then
myTemplate.Save
End If
End With
End If
End Sub
 
G

Greg

Charles,

I wasn't looking for the simplest workaround. I was asking if anyone
has Adobe Acrobat installed and would test to see if this method works.

I was trying to provided a workaround to the problem that doesn't make
the user do any work (remember to click Shift+File>SaveAll).
 
H

Howard Kaikow

Does the following help?

http://www.standards.com/index.html?PDFMakerandWordMacros

--
http://www.standards.com/; See Howard Kaikow's web site.
Users have reported that after installing Acrobat 7 that changes made
to normal.dot are not being saved. One of the posters confirmed that
Shift+File>SaveAll before closing Word resolved his problem. I am
wonder if the following AutoExit would work? I don't have Acrobate 7
(open to donations) so I can't test it here.

Sub AutoExit()
'Place this macro in Normal and other document templates
Dim myTemplate As Template
Dim myString As String
Dim oChgAlert As Balloon
Set myTemplate = ActiveDocument.AttachedTemplat­e
myString = myTemplate.Name
If myTemplate.Saved = False Then
Set oChgAlert = Assistant.NewBalloon
With oChgAlert
.Heading = "Microsoft Word Alert!!"
.Text = "Changes have been made that effect the" _
& " Global template, " & myString & ". Do you want" _
& " to save these changes?"
.Button = msoButtonSetYesNo
.Animation = msoAnimationGetAttentionMinor
If .Show = msoBalloonButtonYes Then
myTemplate.Save
End If
End With
End If
End Sub
 
G

Graham Mayor

Probably not because Acrobat 7 no longer uses the DOT add-in, but instead
uses a COM add in :(
If Adobe were not so anal about the security of their addin code, these
problems would have been resolved years ago, but instead new problems are
introduced with each new release.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
H

Howard Kaikow

Graham Mayor said:
Probably not because Acrobat 7 no longer uses the DOT add-in, but instead
uses a COM add in :(
If Adobe were not so anal about the security of their addin code, these
problems would have been resolved years ago, but instead new problems are
introduced with each new release.

Adobe is not at all being anal.

The bulk of the code is actually in a compiled DLL, AdobePDFMakerX.DLL and
AdobePDFMakerX.tlb, which none of us has any right to expect to be able to
see.
 
G

Greg Maxey

I don't know if any of us gives a hoot about seeing it (the code). We just
wish that Adobe Add-Ins didn 't bugger up Word. :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top