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?
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