This is going to demonstrate how to find the information to post, then post it in vb6. We are going to be depositing 10,000 neopoints.
What you are going to need:
A copy of vb6 of course
FireFox
Live Http Headers Firefox Addon (
mozdev.org - livehttpheaders: index)
1. Open up Live Http Headers (make sure capture is off).
2. Load the bank page and now turn the capture on Http Headers on.

3. Deposit the 10,000 NP.
4. Http Headers will now look like this.

5. Scroll to the top and that is what was posted.

6. The circle region is what you will need.

7. Now for the code. You will need to make a string called strHTML for my code to work. The wrapper I use is named Gluraks. Here is the code to post any data and the code use to post this. This can depend on the wrapper you are using.
Code:
'To post any kinda of data
strHTML = Gluraks.PostWrapper("Link", "Data you're posting", "Referrer Link")
'to post our data
strHTML = Gluraks.PostWrapper("http://www.neopets.com/process_bank.phtml", "type=deposit&amount=10000", "http://www.neopets.com/bank.phtml") Now you know how to post data, enjoy copyright xZel