A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Irritating "Save" prompt when nothing has changed



 
 
Thread Tools Display Modes
  #1  
Old June 18th, 2004, 02:16 AM
F1
external usenet poster
 
Posts: n/a
Default Irritating "Save" prompt when nothing has changed

Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with Win2KPro. Word 2002 has a very irritating feature which I haven't so far been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my changes, even when I haven't made any. Word 2000 doesn't do this. Word 2002 also opens a blank document every time, as well as the document I want.

How can I stop Word from asking me if I want to save non-existent changes every time I close it?

Thanks in advance,
Frank

  #2  
Old June 18th, 2004, 02:30 AM
Greg Maxey
external usenet poster
 
Posts: n/a
Default Irritating "Save" prompt when nothing has changed

Frank,

WRT the save changes prompt, this could be caused by
ToolsOptionsSaveEmbed SmartTags being checked in the offendeing
docuements.

--
Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in

F1 wrote:
Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with
Win2KPro. Word 2002 has a very irritating feature which I haven't so
far been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my
changes, even when I haven't made any. Word 2000 doesn't do this.
Word 2002 also opens a blank document every time, as well as the
document I want.

How can I stop Word from asking me if I want to save non-existent
changes every time I close it?

Thanks in advance,
Frank



  #3  
Old June 18th, 2004, 10:26 PM
ssiwirski
external usenet poster
 
Posts: n/a
Default Irritating "Save" prompt when nothing has changed

I have the same problem. This solution does seem to fix it, however--is there any way to have "Embed Smart Tags" unchecked as the default? Otherwise you have to do this on every offending document.

"Greg Maxey" wrote:

Frank,

WRT the save changes prompt, this could be caused by
ToolsOptionsSaveEmbed SmartTags being checked in the offendeing
docuements.

--
Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in

F1 wrote:
Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with
Win2KPro. Word 2002 has a very irritating feature which I haven't so
far been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my
changes, even when I haven't made any. Word 2000 doesn't do this.
Word 2002 also opens a blank document every time, as well as the
document I want.

How can I stop Word from asking me if I want to save non-existent
changes every time I close it?

Thanks in advance,
Frank




  #4  
Old June 18th, 2004, 11:25 PM
Greg Maxey
external usenet poster
 
Posts: n/a
Default Irritating "Save" prompt when nothing has changed

Iceman,

My experiece was this was only a problem when opening files on my desktop
(Office2002) that had been created on my laptop (Office2000). I suppose if
it is unchecked in the template then new files created would be unchecked.
You can run this macro to turn it off on all files in a directory:

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
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in

ssiwirski wrote:
I have the same problem. This solution does seem to fix it,
however--is there any way to have "Embed Smart Tags" unchecked as the
default? Otherwise you have to do this on every offending document.

"Greg Maxey" wrote:

Frank,

WRT the save changes prompt, this could be caused by
ToolsOptionsSaveEmbed SmartTags being checked in the offendeing
docuements.

--
Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in


F1 wrote:
Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with
Win2KPro. Word 2002 has a very irritating feature which I haven't
so
far been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my
changes, even when I haven't made any. Word 2000 doesn't do this.
Word 2002 also opens a blank document every time, as well as the
document I want.

How can I stop Word from asking me if I want to save non-existent
changes every time I close it?

Thanks in advance,
Frank



  #5  
Old June 21st, 2004, 12:12 AM
F1
external usenet poster
 
Posts: n/a
Default Irritating "Save" prompt when nothing has changed

Hi Greg,

Many thanks for your help. Much appreciated. I'll give the macro a try.

Regards,
Frank

  #6  
Old June 21st, 2004, 04:06 PM
ssiwirski
external usenet poster
 
Posts: n/a
Default Irritating "Save" prompt when nothing has changed

Little bit easier solution I found by reading older messages in this newsgroup.

http://support.microsoft.com/?kbid=816473




"F1" wrote:

Hi Greg,

Many thanks for your help. Much appreciated. I'll give the macro a try.

Regards,
Frank

  #7  
Old December 12th, 2004, 01:55 PM
Hokee
external usenet poster
 
Posts: n/a
Default



"Greg Maxey" wrote:

Iceman,

My experiece was this was only a problem when opening files on my desktop
(Office2002) that had been created on my laptop (Office2000). I suppose if
it is unchecked in the template then new files created would be unchecked.
You can run this macro to turn it off on all files in a directory:

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
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in

ssiwirski wrote:
I have the same problem. This solution does seem to fix it,
however--is there any way to have "Embed Smart Tags" unchecked as the
default? Otherwise you have to do this on every offending document.

"Greg Maxey" wrote:

Frank,

WRT the save changes prompt, this could be caused by
ToolsOptionsSaveEmbed SmartTags being checked in the offendeing
docuements.

--
Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in


F1 wrote:
Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with
Win2KPro. Word 2002 has a very irritating feature which I haven't
so
far been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my
changes, even when I haven't made any. Word 2000 doesn't do this.
Word 2002 also opens a blank document every time, as well as the
document I want.

How can I stop Word from asking me if I want to save non-existent
changes every time I close it?

Thanks in advance,
Frank




  #8  
Old March 20th, 2006, 04:28 PM posted to microsoft.public.word.docmanagement
external usenet poster
 
Posts: n/a
Default Irritating "Save" prompt when nothing has changed

Thanks all for this info! It seems as though anything related
to the Smart Tags subject creates significant irritation! It's
as though you're transported to the least common denominator
user level and are assumed to be completely stupid and need
all the irritating prompts and icons that really do nothing more
than get in the way!

So much for "progress".

Thanks again.

jl


"Greg Maxey" wrote:

Frank,

WRT the save changes prompt, this could be caused by
ToolsOptionsSaveEmbed SmartTags being checked in the offendeing
docuements.

--
Greg Maxey
A peer in "peer to peer" support
Rockledge, FL
To e-mail, edit out the "w...spam" in

F1 wrote:
Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with
Win2KPro. Word 2002 has a very irritating feature which I haven't so
far been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my
changes, even when I haven't made any. Word 2000 doesn't do this.
Word 2002 also opens a blank document every time, as well as the
document I want.

How can I stop Word from asking me if I want to save non-existent
changes every time I close it?

Thanks in advance,
Frank




  #9  
Old May 28th, 2007, 12:20 AM posted to microsoft.public.word.docmanagement
Tony
external usenet poster
 
Posts: 593
Default Irritating "Save" prompt when nothing has changed

This is due to a damage in the Normal.doc. Search for the Normal.doc
template in word (you may need to go to control panel/folder options/view and
select show hidden files and folders). Open the Normal.doc and hit save.

"F1" wrote:

Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with Win2KPro. Word 2002 has a very irritating feature which I haven't so far been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my changes, even when I haven't made any. Word 2000 doesn't do this. Word 2002 also opens a blank document every time, as well as the document I want.

How can I stop Word from asking me if I want to save non-existent changes every time I close it?

Thanks in advance,
Frank

  #10  
Old May 28th, 2007, 03:17 AM posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill
external usenet poster
 
Posts: 31,786
Default Irritating "Save" prompt when nothing has changed

Opening and saving Normal.dot (not Normal.doc) will have no effect at all
unless something has changed in it. In any case, the problem described is
*not* due to a damaged Normal.dot. The correct answer (as previously posted
is in “WD2002: You Are Prompted to Save Changes When You Close a Document
Even Though You Have Made No Changes” at
http://support.microsoft.com/?kbid=816473

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Tony" wrote in message
...
This is due to a damage in the Normal.doc. Search for the Normal.doc
template in word (you may need to go to control panel/folder options/view

and
select show hidden files and folders). Open the Normal.doc and hit save.

"F1" wrote:

Hello,

I'm using Word 2002 at work with WinXP and Word 2000 at home with

Win2KPro. Word 2002 has a very irritating feature which I haven't so far
been able to get rid of via the usual help searches.

When I close a Word document, it always asks if I want to save my

changes, even when I haven't made any. Word 2000 doesn't do this. Word
2002 also opens a blank document every time, as well as the document I want.

How can I stop Word from asking me if I want to save non-existent

changes every time I close it?

Thanks in advance,
Frank


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 03:23 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright 2004-2024 OfficeFrustration.
The comments are property of their posters.