PDA

Click to See Complete Forum and Search --> : Help With Form!


AAG
Aug 21st, 2000, 09:26 PM
Hi, i'm new to this forum, in fact i just found it today Anyways my question is what is of importance! I'm a beginner programmer, I have seen auto-form-filling programs, some illegal, some legal such as gator, etc... I was so impressed by these programs, I have decided to make one of my own for personal use The question is, I'm tryin to fill out a form from a well known site but can't seem to get it to work!

The form uses <SELECT NAME="frp_birthday.xMonth">

I tried this to autofill the text box
webbrowser1.document.forms(0).frp_birthday.xDay.value = "01"

Of course this doesn't work

the value of this form is
<OPTION VALUE="01" >January

Can somebody post a way to get this type of form name to be autofilled!!
Thanx in advance

greatone
Aug 22nd, 2000, 01:23 PM
Well you could try it this way:

WebBrowser1.Document.Forms(0).Item(nr).Value = "02"

where nr stands for the place of the element within the form starting to count from 0.

Greetings
Greatone