App needs to know when IE receives a mouse click.

  • Thread starter Thread starter AAaron123
  • Start date Start date
A

AAaron123

If IE is open I'd like my app to receive an event or otherwise know when IE
receives a mouse click.

Is that fairly easy to do?


Thanks in advance
 
I think I found your IEautomation reference:

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1449302&SiteID=1

Is this the one you had in mind?

-----------------

I created a VS project an inserted the code and added the COM reference to
Microsoft.Internet.Controls

But I get the error in the code from the Internet:
Error 2 The type or namespace name 'InternetExplorer' could not be found
(are you missing a using directive or an assembly reference?)

I suspect it wants a "using" but I don't know what to put on the "using".
The Help doesn't seen to say.

Do you know how to fix this?
 
I can't find it but I've decided I'll trigger on a timer tick rather than a
mouse click.

Thanks a lot
 
I was searching for IEautomation and got many hits all N.G.

This looks like a nice example because it's brief.

Now I need to study it.

Thanks for the extra effort
 
first take a look at the readme file 'cause it 's not working
you need to set the correct reference !
 
I understood one word in the readme file, "Notes" all the rest would never
get through my spell checked!
e.g.,Interopérabilité avec Internet Explorer, exemple de technologie

Anyway, the vb code did not have a sln file so I made a new solution and
inserted the .vb file.

But, as you said the reference was missing.

I tried to figure what the correct item in the reference list is to allow
SHDOCw.

Is it COM or Net?


thanks
 
shdocvw.dll com in %windir%\system32

AAaron123 said:
I understood one word in the readme file, "Notes" all the rest would never
get through my spell checked!
e.g.,Interopérabilité avec Internet Explorer, exemple de technologie

Anyway, the vb code did not have a sln file so I made a new solution and
inserted the .vb file.

But, as you said the reference was missing.

I tried to figure what the correct item in the reference list is to allow
SHDOCw.

Is it COM or Net?


thanks
 
Back
Top