
COMMUNICATE WITH A ACTIVE WEB SITE IN Internet EXPLORER (5.0)
I am not trying to do anything with my own form. I want to find the hWND of
the Internet Explorer window and then find out the hWND of the dynamically
loaded textbox that they use inside the web browser in the FORMS. Then I
want to change the property and then press the SUBMIT button (also
dynamically loaded for use in the web site.
--
Sincerely,
Farshad Hemmati
Microsoft Visual Basic MVP
CompuCated Technologies
http://www.compucated.com/
-------------------------------------------------------
MAKE YOUR MEMORIES ELECTRONIC
Get Your Photo Album Software Now!
http://www.compucated.com/album/
-------------------------------------------------------
Quote:
> > Dear All,
> > How do you communicate with a web browser and the open web site?
> > Here is what I want to do:
> > I have a open web site in Internet Explorer with a FORM (text boxes,
> scroll
> > boxes, and a SUBMIT button). It has over 10 text boxes. They all have a
> > NAME= property. How do I find these and fill them in with text?
> > Then I want to press the SUBMIT button. How can I approach this?
> > Thank you in advance.
> > Sincerely,
> > Farshad Hemmati
> > From oigres P
> Try...
> Dim cntrl as variant ' or textbox
> For each cntrl in Form1.controls 'or name of form
> if typeof(cntrl) is text then
> 'put text in textboxes
> cntrl.text="what text you want to put in" 'not sure about this
line
> end if
> next cntrl
> 'press submit button ?
> submit.value=true ' assumes button is called submit
> ' ............................................................any use?