
10-22-2005, 02:14 PM
|
|
Newcomer
|
|
Join Date: Sep 2004
Posts: 17
|
|
|
Are you talking about the web browser control or an external web brower like Internet Explorer or Firefox?
You can do it easily with the VB web browser control like this:
wb.Document.Forms(0).email.Value = email
wb.Document.Forms(0).passwd.Value = passwd
wb.Document.Forms(0).submit
wb is the name of the web browser control, and email, passwd, and submit are names of fields in a form on a web page in the web browser control. Find the names of the fields to enter text in to them, and the submit button is pressed simply by the use of .submit
Is this what you are looking for?
|
|