vb6 - creating winhttp array in visual basic 6 -


i want know if possible create array winhttp can winsock control.

here code send out request once using proxy.

dim result string dim url string dim winhttpreq object set winhttpreq = createobject("winhttp.winhttprequest.5.1") url = "http://example.com" winhttpreq.open "get", url, false winhttpreq.setrequestheader "user-agent", text2.text winhttpreq.setrequestheader "accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" winhttpreq.setrequestheader "accept-language", "en-us,en;q=0.8,en-us;q=0.5,en;q=0.3" winhttpreq.setrequestheader "accept-charset", "windows-1251,utf-8;q=0.7,*;q=0.7" winhttpreq.setrequestheader "keep-alive", "115" winhttpreq.setrequestheader "connection", "keep-alive" winhttpreq.setproxy 2, list1.text, "" winhttpreq.send 

list1.text ip:port

how can create array can send out request ip in list1, rather sending 1 1?


Comments

Popular posts from this blog

ios - MKAnnotationView layer is not of expected type: MKLayer -

ZeroMQ on Windows, with Qt Creator -

unity3d - Unity SceneManager.LoadScene quits application -