我有以下代码在 Internet Explorer 中打开一个窗口并向用户显示进度。
Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.navigate "about:blank"
objExplorer.document.write "Processing record 1 of 1000"
在上面的代码之后,我想清除文档的内容并写一些别的东西,但是当下面的内容不清楚时。
objExplorer.document.Clear
有没有办法在不关闭窗口的情况下清除内容?