HOW TO: Add a button to IE Explorer toolbar???

  • Thread starter Thread starter svd
  • Start date Start date
S

svd

I would like to:

1) Add a button to the IE toolbar
2) When presses, it get's the current URL
3) If my application is not running, starts it
4) Finds my application is the list of running processes
5) Passes the URL to my running application.

Any examples to get me started would be much appreciated. Thanks,

Steve
 
You have posted your question to just about every dotnet newsgroup.
The problem is that IE doesn't use the dotnet framework.

IE can reead the HTML which ASP.NET sends it,
but doesn't use the .Net Framework otherwise.

Try posting yourquestion to :

microsoft.public.windows.inetexplorer.ie6.browser
or
microsoft.public.windows.inetexplorer.ie6.ieak




Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
 
svd said:
1) Add a button to the IE toolbar
2) When presses, it get's the current URL
3) If my application is not running, starts it
4) Finds my application is the list of running processes
5) Passes the URL to my running application.

Shell Extensions with .NET
<URL:http://mvps.org/emorcillo/en/code/shell/shellextensions.shtml>

<URL:http://www.codeproject.com/shell/#IE+Programming>
-> "The Complete Idiot's Guid to Writing Shell Extensions"

Writing Shell Extensions with C#
<URL:http://www.theserverside.net/articles/showarticle.tss?id=ShellExtensions>
 
Back
Top