Board logo

標題: 請教判斷IE物件 是否在執行(在記憶體中(未關閉))的語法 ?? [打印本頁]

作者: t8899    時間: 2015-1-22 19:35     標題: 請教判斷IE物件 是否在執行(在記憶體中(未關閉))的語法 ??

本帖最後由 t8899 於 2015-1-22 19:52 編輯

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

語法沒錯
但你想放前面也是可以




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)