>>133
Sub foo()
Const max_count = 1000 '1000で決め打ち
url_arr = Array( _
"https://www.yahoo.co.jp/", _
"https://urasunday.com/" _
)
Dim httpReq(max_count)
index_httpReq = 0
For Each url_foo In url_arr
Set httpReq(index_httpReq) = CreateObject("MSXML2.XMLHTTP")
httpReq(index_httpReq).Open "GET", url_foo, False
httpReq(index_httpReq).Send
index_httpReq = index_httpReq + 1
Next
Excel VBA 質問スレ Part60
■ このスレッドは過去ログ倉庫に格納されています
143デフォルトの名無しさん
2019/03/23(土) 00:42:04.83ID:sBAP9hOD■ このスレッドは過去ログ倉庫に格納されています
