Powerpoint VBA Macro Save As Dialog File Filter
问题 I want to export a PPT presentation to an .html file. Therefore I have the VBA code Sub HTMLExport() ActivePresentation.SaveAs "C\Users\test\pptInHtml.htm", ppSaveAsHTML, msoFalse End Sub This works, but I need the code for a "Save As Dialog Box", where the user can choose the path where the file will be saved as html (the user can only pick "save as html", nothing else). This is the code for my SaveAsDialog Sub ShowSaveAsDialog() Dim dlgSaveAs As FileDialog Set dlgSaveAs = Application