CheapSteam, on Oct 9 2007, 02:39 AM, said:
Just wondering is it possible for vb to auto fill web forms for me? For example aim.com ?
Yes it is, but i am not sure about aim.
Create a basic web browser in vb using the web browser component. This component basically allows you to create a web browser in vb based off the IE engine in a few seconds. Once this is done create two text boxes and 1 command button. In the command button put
WebBrowser1.Navigate(TextBox1.Text + TextBox2.Text)
Now the easy part is done.
Next download live http headers for Firefox. This will allow you to capture the string used to post data to the form you are accessing (This works well for http posts not sure about java and so on). Once you capture the string you should see what URI is being called and where your data is being entered. Copy that url and uri to text box 1. Now in text box 2 is where you will put your message.
Ie in a recent project i did I used a vb app to post to a shoutbox.
in text1 I had hxxp://domain.com/thread.php?add+ in text2 I entered the text I wanted posted and then pressed the command button to post it.
I hope this works. I have more info on my site at hxxp://www.digitaloffensive.com