10/01/19 21:35:31
このコードで使われている変数の型がわかりません。
どなたか教えていただけませんか?
pnir = CreateOLEObj("Sleipnir.API")
docID = pnir.NewWindow("URLリンク(www.hangame.co.jp)", true)
While pnir.IsBusy(docID); SLEEP(1); WEND
Doc = Nothing
REPEAT
SLEEP(1)
Doc = pnir.GetDocumentObject(DocID)
UNTIL Doc <> Nothing
SLEEP(1)
ifb Doc.getElementsByName("loginform").length > 0
Doc.getElementById("strmemberid").value = USER_ID
Doc.getElementById("strpassword").value = PASSWORD
imgs = Doc.getElementsByTagName("img")
for i = 0 to imgs.length - 1
img = imgs.item(i)
ifb POS("btn_login.png", img.src) > 0
img.click
break
endif
next
endif