初心者のためのプログラミング言語ガイド Part7 at TECH
[2ch|▼Menu]
326:デフォルトの名無しさん
08/02/26 23:24:32
すまん足らなかった こっちで

IE = CreateOLEObj("InternetExplorer.Application")
IE.Visible = True
IE.Navigate("URLリンク(www.google.co.jp)")
BusyWait(IE)
IESetData(IE,"初心者のためのプログラミング言語ガイド Part7","q") // TEXT
IESetData(IE,True,"btnG") // SUBMIT Google 検索
BusyWait(IE)
IELink(IE,"初心者のためのプログラミング言語ガイド Part7") // スレリンク(tech板)l50
BusyWait(IE)
IELink(IE,"最新50") // スレリンク(tech板)l50
BusyWait(IE)
IESetData(IE,"テスト","FROM") // TEXT

// IE.Quit // IE終了
//------
Procedure BusyWait(ie)
Sleep(0.5) // Wait
Const TIME_OUT = 90
tm = Gettime()
repeat
Sleep(0.2)
ifb Gettime() - tm > TIME_OUT
MsgBox("Time Out:BusyWait")
ExitExit
endif
until (! ie.busy) and (ie.readyState=4)
Sleep(0.5)
Fend


次ページ
続きを表示
1を表示
最新レス表示
スレッドの検索
類似スレ一覧
話題のニュース
おまかせリスト
▼オプションを表示
暇つぶし2ch

5382日前に更新/203 KB
担当:undef