dynamic hyperlink + auto mouse clicker

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • laurenss
    New Member
    • Sep 2008
    • 1

    dynamic hyperlink + auto mouse clicker

    hi i have an apllication build in vb6
    that opens links like :
    http://www.google/userid=1
    then http://www.google/userid=2
    and so further ..
    its an dynamic hyperlink with vazriable i

    but now , its a difficult part ( i think)

    first
    a link has to open ( with the application)
    so : http://www.google/userid=1
    then , a button on that page has to be clicked
    then the page goes like ; http://www.google/userid=1/completed ( example)
    then yes , : http://www.google/userid=2 has to open
    again , a button on that page has to be clicked ( the same button , same place , so maybe a can use an auto mouse clicker) ?

    but i cant take the final url of example -> http://www.google/userid=1/completed cause it wont work so i have to use something like an auto mouseclicker

    someone knows how to change the source that i dont have to use an extern auto mouse clicker ?
    or someone another idea

    here is the source of the appl that i have now ;

    [HTML]Option Explicit
    Dim i As Integer
    Dim j As Integer
    Dim t As Integer
    Dim SaveStr As String

    Private Sub Command1_Click( )
    Dim msg As String

    msg = InputBox("How many times want to repeat ?", "repeat", 0)
    If IsNull(msg) = False And IsNumeric(msg) = True Then
    t = CInt(msg)
    Else
    Timer1.Enabled = False
    End If
    Timer1.Enabled = True
    SaveStr = Text1.Text
    End Sub

    Private Sub Form_Load()
    i = 1
    Timer1.Interval = 100
    Timer1.Enabled = False
    End Sub

    Private Sub Form_Resize()
    Text1.Width = Me.Width
    WebBrowser1.Wid th = Me.Width
    WebBrowser1.Hei ght = Me.Height
    Command1.Left = Me.Width - Command1.Width
    End Sub

    Private Sub Timer1_Timer()
    If WebBrowser1.Bus y = False Then
    WebBrowser1.Nav igate SaveStr + CStr(i)
    Text1.Text = SaveStr + CStr(i)
    i = i + 1

    If i = t + 1 Then
    Timer1.Enabled = False
    Text1.Text = vbNullString
    t = 0
    i = 1
    End If
    End If
    End Sub [/HTML]
  • !NoItAll
    Contributor
    • May 2006
    • 297

    #2
    Maybe this technique exists, but it sounds an awful lot like an auto-trojan/virus loader to me!
    Downloading, and even installing, a known application/file from an internet location is relatively easy - but to do so with an as-yet unknown URL that you have no control over would ostensibly appear to be of a nefarious purpose.

    Comment

    • xinariscy
      New Member
      • Sep 2008
      • 14

      #3
      Auto mouse clicker.. hmm I don't know if this thing exists.. Even the "evil" bots around the internet are using the code of the pages for crawling around the web.

      As !NoItAll said such thing is not allowed. If you want to navigate to your own website, you can use a text box placed in the web server, and every time a user click on a button in the webpage something in the text box can be change. You can trace this change from your program and navigate to other website. I know this is not what you want but it's a little close..

      Comment

      Working...