16,717
社区成员
发帖
与我相关
我的任务
分享
Private Sub awbDocumentBrowser_DocumentComplete(ByVal sender As System.Object, ByVal e As AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent) Handles awbDocumentBrowser.DocumentComplete
If awbDocumentBrowser.ReadyState = SHDocVw.tagREADYSTATE.READYSTATE_COMPLETE Then
CType(awbDocumentBrowser.Document, HtmlDocument).ExecCommand("SaveAs", False, "")
End If
End Sub