Disable Warnings

philbullock1223

Registered User.
Local time
Today, 16:19
Joined
Dec 31, 2011
Messages
55
I need to disable the "already exists" warning when selecting a file that is to be overwritten. I have tried DoCmd.SetWarnings False but doesn't seem to work.

I have also tried Application.DisplayAlerts = False but I think that is for Excel only. Any help?

Code:
DoCmd.SetWarnings False
Set Window = Application.FileDialog(msoFileDialogSaveAs)
With Window
    
    .AllowMultiSelect = False
    .Title = "Get Input File"
    Action = .Show
    
    If Action = -1 Then
        FilePath = .SelectedItems(1)
    Else
        GoTo SkipToEnd
    End If
    
End With
DoCmd.SetWarnings True
 
i don't use the filedialog you are using - but I am sure there will be a "switch" to turn off the overwrite notification - you are on the right track.

try the . operator again, and check everything that intellisense offers for the overwrite flag.
 
Thanks for the suggestions. I have done quite a few google searches with no results. Everyone seems to indicate DoCmd.SetWarnings should do it, but doesn't seem to be working for me.

What do you mean by .operator?

Phil
 
your code

Code:
With Window
 
[COLOR=red][B].AllowMultiSelect = False[/B][/COLOR]
[COLOR=red][B].Title = "Get Input File"[/B][/COLOR]
Action = .Show
 
If Action = -1 Then
FilePath = .SelectedItems(1)
Else
GoTo SkipToEnd
End If
 
End With

the two highlighted items are showing properties and/or methods of the filedialog window. that is what you are looking for - the correct property to turn off the prompt.

in that block, start a new line after the .title line, and enter a dot. now intellisense should offer you a load of available commands - which ought to help you achieve your aim.

docmd.setwarnings is nothing to do with this - that is to do with ACCESS prompting you about certain ACCESS actions.
 
Ah... I understand.

I've been looking for one, with not luck. Anyone else know of anything else I might be able to try?

Phil
 
I finally got to try these suggestions out with no luck. Your example links are very close, but I still can't seem to get anything I do to remove the overwrite warning. I'm no expert in this area.

Thanks so much for your help. Still unresolved.

Phil
 

Users who are viewing this thread

Back
Top Bottom