Re: Help! A word feature is trying to drive me insane!



Rianna,

Well first confirm that this is the cause. Take any file that is showing
you this behaviour and turn that feature off. Press Tools>Options>Save and
uncheck "Embed smart tags." Save the file, close it, reopen it, and close
again. If the prompt is absent, then I was on to something.

This problem didn't occur with new files created, only previous files. You
can manually repeat the process above on each file as you are using them, or
you can run that macro on a batch of files. See:
http://www.gmayor.com/installing_macro.htm for instructions for installing a
macro.


--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.


Rianna wrote:
Gosh Greg it looks like you might be onto something here but "You can
set that option to off in a batch of files by running this macro:" I
have no idea what all this is. How do I run a macro? Figures they
have to make turning it off hard. Thanks for your help. Rianna



"Greg Maxey" wrote:

Rianna,

I had a similiar problem a few years back when I upgraged to
Word2002. It would happend when I opened documents created in an
earlier version. The culprit was Tools>Options>Save>Embed Smart
tags.

If that option was checked, I would get the promt everytime.

You can set that option to off in a batch of files by running this
macro:

Public Sub BatchToggleEmbedSmartTabs()

'Sets embeded SmartTag off in all files in a directory
Dim myFile As String
Dim PathToUse As String
Dim myDoc As Document
'Close any documents that may be open
If Documents.Count > 0 Then
Documents.Close SaveChanges:=wdPromptToSaveChanges
End If
'Get the folder containing the files
With Dialogs(wdDialogCopyFile)
If .Display <> 0 Then
PathToUse = .Directory
Else
MsgBox "Cancelled by User"
Exit Sub
End If
End With

If Left(PathToUse, 1) = Chr(34) Then
PathToUse = Mid(PathToUse, 2, Len(PathToUse) - 2)
End If

myFile = Dir$(PathToUse & "*.*")

While myFile <> ""
'Open each file and toggle SmartTags
Set myDoc = Documents.Open(PathToUse & myFile)
With ActiveDocument
.EmbedSmartTags = False
End With
'Close the file, saving the changes.
myDoc.Close SaveChanges:=wdSaveChanges
myFile = Dir$()
Wend

End Sub


--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.


Rianna wrote:
Hello, one of words features it trying to send me to the nut house
so I better try to do something about it. I use my word 2003 a lot.
Every single dratful time I open one of my word documents and try to
close it again it asks me if I want to save my changes. Even when I
have made NONE! It asks me every time! What good is it having the
save feature if it insists on asking you? Is there a way I can turn
this annoying feature off? Let me know please, I hope you know the
answer you will save me from this neverending torture. Rianna at
riannamay@xxxxxxx


.



Relevant Pages

  • Re: D40x Mirror Lockup
    ... little less and still get the feature with other manufacturers. ... Anyone that takes macro or astro shots will benefit from MLU. ...
    (rec.photo.digital)
  • Re: How to create a Tbl style with precise positioning
    ... Looks like I will have to go the macro route. ... Therefore when the underlying table design changes (which can include both ... I realize Word is a word-processor at heart and has expanded it's feature ... use Word in lieu of page layout progs it would be very useful to have Word ...
    (microsoft.public.word.tables)
  • Re: macros
    ... reusing a feature that someone else has implemented for you. ... name the programmer wants) is visible and bound to the test result. ... He concludes with "By the way: to fans of Lisp macros, ... Tyler: "How's that working out for you?" ...
    (comp.lang.lisp)
  • Re: Help! A word feature is trying to drive me insane!
    ... Hey Greg, thanks a lot for the help, I'll check it out. ... "Greg Maxey" wrote: ... you can run that macro on a batch of files. ... Rianna wrote: ...
    (microsoft.public.word.docmanagement)
  • Re: [TIN] Feature inquiry
    ... to another non-GUI client for this single feature). ... there is a macro that implements this feature. ... posts in order to score or filter responses to those articles. ... that a newsreader can filter or score on that special header, ...
    (news.software.readers)