Hi
I've recorded an AutoClose() macro to save the document as a web page (.htm) but the macro doesn't record the entry to the Set Page Title dialogue:
What gives? Did MS miss a trick?
More to the point, is there a way around this?
JJ
[small][purple]Variables won't. Constants aren't[/purple][/small]
I've recorded an AutoClose() macro to save the document as a web page (.htm) but the macro doesn't record the entry to the Set Page Title dialogue:
Code:
Sub AutoClose()
'
' sawp Macro
' Macro recorded 25/08/2006 by Jeff Jeffery
'
ActiveDocument.SaveAs FileName:="Doc1.htm", FileFormat:=wdFormatHTML, _
LockComments:=False, Password:="", AddToRecentFiles:=True, WritePassword _
:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:=False, _
SaveNativePictureFormat:=False, SaveFormsData:=False, SaveAsAOCELetter:= _
False
ActiveWindow.View.Type = wdWebView
End Sub
What gives? Did MS miss a trick?
More to the point, is there a way around this?
JJ
[small][purple]Variables won't. Constants aren't[/purple][/small]