Reputation: 15623
Internet Explorer can save its content as an MHTML file using the "Save As..." menu command. Is this feature exposed by its COM interface?
Upvotes: 1
Views: 2411
Reputation: 54793
Yes.
It is.
Try something like:
WebBrowser.ExecWB OLECMDID_SAVEAS, OLECMDEXECOPT_PROMPTUSER
BTW to do MHT conversion manually, check out the code by Jeff Atwood.
Upvotes: 1