The code below saves correctly but the Web File Properties dialog is
not displayed.
Thanks in advance!
Sub ShowSaveAsDialog()
Dim dlgSaveAs As FileDialog
Dim sPath As String
Set dlgSaveAs =
Application.FileDialog(FileDialogType:=msoFileDialogSaveAs)
dlgSaveAs.InitialFileName = "http://hd.netropole.com/kb/Expense
Reports/" & Application.ActiveWorkbook.Name
dlgSaveAs.InitialView = msoFileDialogViewWebView
If dlgSaveAs.Show = -1 Then
sPath = dlgSaveAs.InitialFileName
Application.ActiveWorkbook.SaveAs sPath
End If
End Sub