Search results for query: *

  • Users: TastyTeo
  • Content: Threads
  • Order by date
  1. TastyTeo

    Question How can i add more than one header modifications?

    Hello i've been experimenting on some WebBrowser stuff on Visual Basic 2010, and after experiencing a lot of things, i still wonder how can i add multiple header modifiers, for instance i've added a mod to the Referer (yes with one r) which actually mods the site's referrer and stuff like that...
  2. TastyTeo

    Question Find and click HREF on WebBrowser1

    Hello, i am experimenting on a vb app, and i have a text box where you input the value of the href (eg. http://.......) So while the webbrowser is on a webpage which haves many href elements, when i press button1, i want it to find the one we defined at textbox1.text and click the BLUE HREF...
  3. TastyTeo

    Make WebBrowser1 navigate (x) times on a particular website

    WebBrowser1.Navigate("http://" + TextBox2.Text + "/robbery/index/humanhunt/1") How can i make this code execute the times that TextBox1.Text indicated? It should be some kind of loop. but i want it to repeat this every 100 milliseconds thanks
  4. TastyTeo

    Some Help with the If Statement

    Hello this is my code Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click If WebBrowser1.Document.Url.AbsoluteUri.ToString.EndsWith("profile") Then MsgBox("it looks you are already logged in, starting bot...") and Timer2.Enabled...
  5. TastyTeo

    How do i get this Text from HTML to TextBox?

    I learned to do this with Value's and Input Boxes, but this one is more difficult. Let's say i have webbrowser1 in my project where the url is on a site which has html like this <form id="edit_form_user_friends" name="edit_form_user_friends"> <div class="box-title title-text-color">Friends...
  6. TastyTeo

    Question How do i get YouTube Subscribers count into TextBox?

    Hello, i tried getting the YouTube Subscribers count to show up on a textbox, when i click on Button. but i seem to make something wrong. the mistake is at the VALUE but i have no idea what to change it into. There is no value, there is just plain text on the page, is there any way i can get...
Back
Top