Click here to Skip to main content
15,892,072 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi, I need to create a simple IE addon using .Net technology with c# code. I am not understanding how to write a code to create IE addon without using third party.

Please send me code if anyone have.

Thanks,
Posted
Comments
DT_2 18-Mar-19 3:58am    
Hi, Did you get any solution over there? I need some guidance, how to start. I want an extension where i will press the extension image and feedback form will open. Please help in any way.

Refer the link which may help you get an idea.

developing-internet-explorer-extensions[^]
 
Share this answer
 
Please chk this...

var pat = external.menuArguments;
var doc = pat.document;
var sel = doc.selection;
var rng = sel.createRange();
var str = new String(rng.text);
var oShell = new ActiveXObject("Shell.Application");// Replace with your executable name
oShell.ShellExecute("cmd", "/k @echo " + str);
oShell = null;
 
Share this answer
 
Comments
Priyanka Bhawsar 12-Mar-14 3:57am    
No, sorry its not helpfull to me, its showing different. I need C#code to add addons.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900