webBrowser interaction- best reference?

MCantu

Registered User.
Local time
Yesterday, 16:30
Joined
Nov 18, 2004
Messages
62
Hey, someone showed me code to interact with a web browser.

This is going to help me out here at work, and I want to read more.

When I do searches- what keywords do I need to put in to find reference material for this?

Someone mentioned it was VB for "Microsoft control library".

what? huh?

I was playing around with the little example- it was too much fun- I need to learn more!!

If I do a search- what is this? what keywords should I use to find my information on how this works.

If you recognize this, yell out what I should be searching for:
-------------------------------------------------------

If webBrowser1.Busy = False Then
.Document.Forms(0).all("txtResID").focus
.Document.Forms(0).all("txtResID").Value = recordset![Vendor Number]
.Document.Forms(0).all("txtLastName").focus
.Document.Forms(0).all("txtLastName").Value = recordset![Last Name]
.Document.Forms(0).all("txtFirstName").focus
.Document.Forms(0).all("txtFirstName").Value = "M" '=Left(recordset![First Name],1)
.Document.Forms(0).all("loginBtn").focus
.Document.all("loginbtn").Click

End If
 

Users who are viewing this thread

Back
Top Bottom