Hi I am a VB noob, but I am trying to learn and I have been beating my head over the past few days trying to come up with a solution for my problem.

I am making a web browser utility for a text based game that does a few things.

1. It logs into a a site and submits- Finally figured that out when I realized 2005 didn't have form.submit function I had to use invokememeber("submit")

2. It goes to a ranking page submitted by an upper and lower bounds in increments of 50 and retrieves the links of players there. The players links are in the form of stats.php?id=sixdigitnumbergoeshere.

3. It will go one by one and send recruiting messages to the existing players and will have to submit a form again. In order to submit that form one will have to type in a 6 letter captcha that should be displayed on the page.


All that I am worrying about for now is the 2nd part. I have tried many things , even tried using your GetCurrentwebdoc function and my latest attempt at grabbing links was this:

VB Code:
  1. Dim pageSource As String
  2.         pageSource = Webbrowser1.Document.All("stats.php?id=").InnerHtml

again the idea from these forums because I am just desperate at this point.

If any help could be provided it would be much appreciated. Thank you.


Kevin