Publisher SaveAs Macro

W

Wiggum

Does anyone have the start of a SaveAs Macro in Publisher. I have built a Web
Page and would like to install a Macro within Publisher that automatically
saves the file in Publisher and Web formats.

Any help is greatly appreciated,

Ryan
 
J

jasonp128

HI Ryan,

I think what you're needing is one or two lines of code to do the actual
save. The top line below is the publisher format and the second line is the
publisher HTML format. I think that is what you're looking for...

ActiveDocument.SaveAs "PublisherVersion", pbFilePublication, False
ActiveDocument.SaveAs "WebVersion", pbFilePublicationHTML, False


Jason
 
Top