How to fill the fields of IE's web page from within VB or C++ ?
XML / XSL
2
Posts
2
Posters
1
Views
1
Watching
-
Does anybody know how to fill the fields of IE's web page from within VB or C++ ? What if the page is secure? Of course, there is no problem to fill all the fields by hand. The question is how to do it automatically, by running .exe or .dll.:((
-
Does anybody know how to fill the fields of IE's web page from within VB or C++ ? What if the page is secure? Of course, there is no problem to fill all the fields by hand. The question is how to do it automatically, by running .exe or .dll.:((
Take a look at IHTMLDocument and IHTMLElement)interfaces. In general you'd need to get a hold of html document, then get and html elemnt that you are interseted in (using probaly one of getElement.. methods) and then change it. Edward