Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Nicko
 
Posts: n/a
Default How do you turn off "Save a copy/Overwrite changes" dialog box


Hello Guys,

I have created a (password to open) workbook using Excel 2003 SP1 on a
shared network drive which when I try to save by using Ctrl S or
clicking the Save icon gives me an irritating dialog box which asks:

"The file 'filename.xls' may have been changed by another user since
you last saved it. In that case what do you want to do?"

-Save a copy
-Overwrite changes


Please can someone tell me how to deactivate this annoying dialog box
as I have been unsuccesful so far in my efforts

Many thanks in advance

Nick


--
Nicko
------------------------------------------------------------------------
Nicko's Profile: http://www.excelforum.com/member.php...o&userid=29477
View this thread: http://www.excelforum.com/showthread...hreadid=491778

  #2   Report Post  
Posted to microsoft.public.excel.misc
Peter Rooney
 
Posts: n/a
Default How do you turn off "Save a copy/Overwrite changes" dialog box

Hi, Nick,

I don't know if this would work, but you could try it - run the macro to
save the active workbook, instead of Ctrl-S/Save Button

Sub SaveMe()
Application.displayalerts = false
Activeworkbook.save
Application.displayalerts = true
End Sub

The first line will turn off all screen prompts (including hopefully yours),
the third will turn them back on again.

Hope this works

Pete



"Nicko" wrote:


Hello Guys,

I have created a (password to open) workbook using Excel 2003 SP1 on a
shared network drive which when I try to save by using Ctrl S or
clicking the Save icon gives me an irritating dialog box which asks:

"The file 'filename.xls' may have been changed by another user since
you last saved it. In that case what do you want to do?"

-Save a copy
-Overwrite changes


Please can someone tell me how to deactivate this annoying dialog box
as I have been unsuccesful so far in my efforts

Many thanks in advance

Nick


--
Nicko
------------------------------------------------------------------------
Nicko's Profile: http://www.excelforum.com/member.php...o&userid=29477
View this thread: http://www.excelforum.com/showthread...hreadid=491778


  #3   Report Post  
Posted to microsoft.public.excel.misc
Nicko
 
Posts: n/a
Default How do you turn off "Save a copy/Overwrite changes" dialog box


Many thanks for your reply Peter,

I'm afraid I am still at a very basic stage with VB. I was hoping that
one of you experts would know how to switch it off in the programme -
if it's not to complicated to explain how/where would I save this
script?

many thanks
Nick

Peter Rooney Wrote:
Hi, Nick,

I don't know if this would work, but you could try it - run the macro
to
save the active workbook, instead of Ctrl-S/Save Button

Sub SaveMe()
Application.displayalerts = false
Activeworkbook.save
Application.displayalerts = true
End Sub

The first line will turn off all screen prompts (including hopefully
yours),
the third will turn them back on again.

Hope this works

Pete



"Nicko" wrote:


Hello Guys,

I have created a (password to open) workbook using Excel 2003 SP1 on

a
shared network drive which when I try to save by using Ctrl S or
clicking the Save icon gives me an irritating dialog box which asks:

"The file 'filename.xls' may have been changed by another user since
you last saved it. In that case what do you want to do?"

-Save a copy
-Overwrite changes


Please can someone tell me how to deactivate this annoying dialog

box
as I have been unsuccesful so far in my efforts

Many thanks in advance

Nick


--
Nicko

------------------------------------------------------------------------
Nicko's Profile:

http://www.excelforum.com/member.php...o&userid=29477
View this thread:

http://www.excelforum.com/showthread...hreadid=491778




--
Nicko
------------------------------------------------------------------------
Nicko's Profile: http://www.excelforum.com/member.php...o&userid=29477
View this thread: http://www.excelforum.com/showthread...hreadid=491778

  #4   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default How do you turn off "Save a copy/Overwrite changes" dialog box

Nicko,

Not sure, but try this

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Dim sFile
Application.EnableEvents = False
Cancel = True
Application.DisplayAlerts = False
If SaveAsUI Then
sFile = Application.GetOpenFilename("Excel Files (*.xls), *.xls")
If sFile < False Then
ThisWorkbook.SaveAs sFile
End If
Else
ThisWorkbook.Save
End If
Application.DisplayAlerts = True
Application.EnableEvents = True
End Sub



'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code



--

HTH

RP
(remove nothere from the email address if mailing direct)


"Nicko" wrote in
message ...

Many thanks for your reply Peter,

I'm afraid I am still at a very basic stage with VB. I was hoping that
one of you experts would know how to switch it off in the programme -
if it's not to complicated to explain how/where would I save this
script?

many thanks
Nick

Peter Rooney Wrote:
Hi, Nick,

I don't know if this would work, but you could try it - run the macro
to
save the active workbook, instead of Ctrl-S/Save Button

Sub SaveMe()
Application.displayalerts = false
Activeworkbook.save
Application.displayalerts = true
End Sub

The first line will turn off all screen prompts (including hopefully
yours),
the third will turn them back on again.

Hope this works

Pete



"Nicko" wrote:


Hello Guys,

I have created a (password to open) workbook using Excel 2003 SP1 on

a
shared network drive which when I try to save by using Ctrl S or
clicking the Save icon gives me an irritating dialog box which asks:

"The file 'filename.xls' may have been changed by another user since
you last saved it. In that case what do you want to do?"

-Save a copy
-Overwrite changes


Please can someone tell me how to deactivate this annoying dialog

box
as I have been unsuccesful so far in my efforts

Many thanks in advance

Nick


--
Nicko

------------------------------------------------------------------------
Nicko's Profile:

http://www.excelforum.com/member.php...o&userid=29477
View this thread:

http://www.excelforum.com/showthread...hreadid=491778




--
Nicko
------------------------------------------------------------------------
Nicko's Profile:

http://www.excelforum.com/member.php...o&userid=29477
View this thread: http://www.excelforum.com/showthread...hreadid=491778



  #5   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default How do you turn off "Save a copy/Overwrite changes" dialog box

Nicko

Perhaps this will apply.

Have a look at this KB Article

"The file may have been changed..." error when you save work*book to network
server in Excel 2002

http://support.microsoft.com/default.aspx?kbid=324491

Myrna Larson also reported that she got this error when opening a workspace
(*.xlw) file.

Opening the workbooks individually solved the problem.


Gord Dibben Excel MVP

On Thu, 8 Dec 2005 05:55:28 -0600, Nicko
wrote:


Hello Guys,

I have created a (password to open) workbook using Excel 2003 SP1 on a
shared network drive which when I try to save by using Ctrl S or
clicking the Save icon gives me an irritating dialog box which asks:

"The file 'filename.xls' may have been changed by another user since
you last saved it. In that case what do you want to do?"

-Save a copy
-Overwrite changes


Please can someone tell me how to deactivate this annoying dialog box
as I have been unsuccesful so far in my efforts

Many thanks in advance

Nick



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Macro to turn on "Track Changes" function John A Excel Discussion (Misc queries) 0 December 7th 05 05:31 PM
How do I turn off the solver results dialog box cripwell01 Excel Worksheet Functions 1 November 9th 05 02:13 PM
"save changes" prompt missing Dennis Excel Discussion (Misc queries) 0 October 31st 05 04:32 AM
Save a Copy/Overwrite changes dialog box TPenner Excel Discussion (Misc queries) 1 January 7th 05 08:56 PM
Save a Copy/Overwrite changes dialog box TPenner Excel Worksheet Functions 0 January 7th 05 05:03 PM


All times are GMT +1. The time now is 10:58 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"