Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

submiting data on a website using vb

Status
Not open for further replies.

chriss87

Programmer
Jan 29, 2007
11
PL
Hello all

i want to write an application using vb6 that could do some online stuff for me. It's easy to download the source of the website and navigate using hyperlinks, but there are still form elements on websites. Does anybody know how to submit some data of my choice using vb?

for example if i have:

<form name="form1" method="post" action="">

<select name="tempVal" id="select">

<option value="1">1 </option>
<option value="2">2 </option>
<option value="3">3 </option>
</select>

<input type="submit" name="Submit" value="OK" id="submit">
</form>

and my application should choose the appropriate value and submit it

If anybody could share some expirince and knowledge on this topic i would appreciate it

thanks in advance

chriss87
 
I don't think you're really looking for VB here. Rather, I'd say you're looking for VBScript, and you might want to repost to here forum329.

Bob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top