Search results for query: *

  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

    So a timer will repeat the task unlimited times, but what if i want to stop it at .... 50 pages?
  4. TastyTeo

    Some Help with the If Statement

    This seems to work perfectly If WebBrowser1.Document.Url.AbsoluteUri.ToString.EndsWith("profile") Then MsgBox("it looks you are already logged in, starting bot...") Timer1.Enabled = True Else...
  5. 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
  6. TastyTeo

    Some Help with the If Statement

    Alright, it works, thank you very much, This is how it looks like now (Correct me if i am wrong, i think i am not) Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click If...
  7. TastyTeo

    Some Help with the If Statement

    Thanks im gonna try this, if i need further assistance i will post back
  8. 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...
  9. TastyTeo

    How do i get this Text from HTML to TextBox?

    With this useful post, and of course some mind, i created what i wanted YouTube Account Information!!! It gets Subscribers Count, Friends Count, Subscriptions Count, Channel Views, and Total Upload Views for any youtube channel you want
  10. TastyTeo

    How do i get this Text from HTML to TextBox?

    Actually using my knowledge, 5 minutes before you post this, i thought of something which will work, and thanks to my mind, :P although you guys are very helpful on this site THUMBS UP!
  11. TastyTeo

    How do i get this Text from HTML to TextBox?

    ...Duh... IT might work but the page has other tags with the same name and it makes the first one if i change this (0) to (1) it changes which one but it is not what i want, any other way?
  12. TastyTeo

    How do i get this Text from HTML to TextBox?

    This was easier than i expected, thank you i thought i would never solve it though
  13. 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...
  14. TastyTeo

    Question How do i get YouTube Subscribers count into TextBox?

    Thank you it does work now ;)
  15. 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