IE ActiveX control usage

  • Thread starter Thread starter S.Kartikeyan
  • Start date Start date
S

S.Kartikeyan

Hello,

I have an activex control in a windows form.
When i load a document url in the activex control
and when the user clicks some other url within the active control html document
i want to know the url where he is going.

how can i do it.

kartik
 
You'll need to know when the control is clicked, then check that control for
the URL it currently points to. But only if the ActiveX control exposes this
functionality... if it doesn't, you can't find out.

hope that helps.

Dan.

Hello,

I have an activex control in a windows form.
When i load a document url in the activex control
and when the user clicks some other url within the active control html
document
i want to know the url where he is going.

how can i do it.

kartik
 
Katrik,

There is a BeforeNavigate event that is fired when the web control is
about to navigate to a different page. You can use this to get the URL that
is being navigated to.

Hope this helps.
 
Back
Top