Set Ie = CreateObject("InternetExplorer.Application")
Ie.Visible = True
Ie.Navigate .....................
請教判斷IE物件 是否在執行(INTERNET EXPLORER在記憶體中(未關閉))的語法 ??
不是用
IE.QUIT
SET IE=NOTHING
IF Ie Is Nothing
這樣還是無法 確認IE是否在記憶體中
想確認 ie.quit 是否真正離開成功作者: bobomi 時間: 2015-1-23 18:56
Set Ie = CreateObject("InternetExplorer.Application")
Ie.Visible = True
on error resume next
do
Ie.Quit
loop until err
SET IE=NOTHING作者: t8899 時間: 2015-1-23 19:38
Set Ie = CreateObject("InternetExplorer.Application")
Ie.Visible = True
on error resume next
do
...
bobomi 發表於 2015-1-23 18:56
語法是否有錯 ??
do
Ie.Quit
loop until err
----------------------
DO UNTIL ERR (這是ERR??)
IE.QUIT
LOOP作者: bobomi 時間: 2015-1-23 19:48