T
tmort
I'd like to be able to save a workbook as a single page non-interactiv
web page. I'd like the user to be able to select both the name for th
file and the save path.
So far all I can come up with is:
Sub Savesheet()
With ActiveWorkbook.PublishObjects.Add(xlSourceSheet, _
"C:\Documents and Settings\My Documents\Book1.mht", "Sheet2"
"", _
xlHtmlStatic, InputBox("enter file name"), "")
.Publish (True)
.AutoRepublish = False
End With
End Sub
The user can select a file name only.
I'd like to call a file control so the user can select both a file nam
and a path.
Thank
web page. I'd like the user to be able to select both the name for th
file and the save path.
So far all I can come up with is:
Sub Savesheet()
With ActiveWorkbook.PublishObjects.Add(xlSourceSheet, _
"C:\Documents and Settings\My Documents\Book1.mht", "Sheet2"
"", _
xlHtmlStatic, InputBox("enter file name"), "")
.Publish (True)
.AutoRepublish = False
End With
End Sub
The user can select a file name only.
I'd like to call a file control so the user can select both a file nam
and a path.
Thank