Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
1.40/5 (3 votes)
Hi, I am trying to call a function of my dll , by the ActiveXObject my code works when i open the html file in IE (browser) but when i use that html file (for gadget development ) it return object error. here is the code for calling dll fuction

<script type ="text/javascript">
function myload()
{
try
{
    var myAx = new ActiveXObject("myadd.AddClass");
    var t = document.getElementById("text1");
    t.value = myAx.add(2,2);

}
catch(e)
{
var textbox = document.getElementById("text1");
    textbox.value = e;
}
}
</script>




Does ActiveXObject works in gadgets ? and if it does place point out my mistake .
Please also guide how to develop gadgets in C# using dll
Posted
Updated 18-Mar-13 0:48am
v5
Comments
Sergey Alexandrovich Kryukov 12-Mar-13 1:24am    
Using ActiveX on client side is evil. Anyway, it won't be supported by all browsers and systems. You should not use it. We can discuss your problem if you describe your ultimate goal, without mentioning technical means of implementation.
—SA
muneebalikiyani 12-Mar-13 1:30am    
I want to develop gadget for windows 7 using html which should consume my own dll

1 solution

See these articles[^] for help on building gadgets.
 
Share this answer
 

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