Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~598 People Reached
Favorite Forums
Favorite Tags
Member Avatar for TheWayEnd

now; web.Navigate("http://www.yougetsignal.com/tools/web-sites-on-web-server/php/get-web-sites-on-web-server-json-data.php?remoteAddress=" + TextBox1.Text) this my code.and web.document.complete ListBox1.Items.Add(web.DocumentText) but result [CODE]{"status":"Success", "resultsMethod":"database", "lastScrape":"2012-01-22 08:05:08", "domainCount":"46", "remoteAddress":"mikrofiltre.com", "remoteIpAddress":"188.124.8.186", "domainArray":[["afatogullari.com", ""], ["anadolukarikaturculerdernegi.com", ""], ["anadolukarikaturculerdernegi.org", ""], ["dekopol.com", ""], ["efesplaygrounds.com", ""], ["ezelhijyen.com", ""], ["gurtuna.com.tr", ""], ["krossdekorasyon.com", ""], ["kucukerler.com", ""], ["mikrofiltre.com", ""], ["mikrofiltre.com.tr", ""], ["omakbobinaj.com", ""], ["otokivanc.com", ""], ["oyunparkiicinherseyburada.com", ""], ["ozlemtokerim.com", ""], ["payeplast.com", ""], …

0
58
Member Avatar for TheWayEnd

Hi I want to make a url contol program. url list in the listbox and search button if vocabulary in the url then listbox 2 add item example: url:[url]http://example.com[/url] vocabulary : "car" search: The car vocabulary in the documenttext ("source code") add listbox1 to listbox2 but I don't want slowly.I …

Member Avatar for TheWayEnd
0
183
Member Avatar for TheWayEnd

Hi Everyone I want to pro about web site login control. for example [CODE] Dim allelements As HtmlElementCollection = WebBrowser1.Document.All For Each webpageelement As HtmlElement In allelements Dim ba As HtmlElement = WebBrowser1.Document.GetElementById("username") Dim sa As HtmlElement = WebBrowser1.Document.GetElementById("password") ba.SetAttribute("value", TextBox1.Text) sa.SetAttribute("value", TextBox2.Text) If webpageelement.GetAttribute("value") = "Login" Then webpageelement.InvokeMember("click") End …

0
45
Member Avatar for TheWayEnd

Hi,everyone My project is scanner for example. Then This is my code... [CODE]Dim htmlele As HtmlElementCollection htmlele = WebBrowser1.document.GetElementsByTagName("h3") For Each htm As HtmlElement In htmlele Dim chld As HtmlElementCollection = htm.GetElementsByTagName("a") For Each ch As HtmlElement In chld ListBox1.Items.Add(ch.GetAttribute("href")) Label1.Text = ListBox1.Items.Count & " Bulundu." Next Next[/CODE] but here …

Member Avatar for TheWayEnd
0
294