G
Guest
I have a page thats going to be impacted on the IE security update in June,
for active x controls, so here is my issue:
I have a windows user control on my page that talks to a EXE and works fine.
I'm working on some of the changes I'm finding
here:http://msdn.microsoft.com/library/d.../author/dhtml/overview/activating_activex.asp
but its not working. I'm referencing my control via an <object> tag, BUT I'm
referencing the actual DLL name and not a classID of the control.
I was able to get this somewhat:
var myObject = document.createElement('object');
DivID.appendChild(myObject);
myObject.width = "200";
myObject.height = "100";
myObject.classid= "clsid:UsesCarSales.DLL";
but I'm getting a JavaScript Error of 'Access Denied' so is there a way I
can get this to work so when the update comes ou my pages work correclty?
for active x controls, so here is my issue:
I have a windows user control on my page that talks to a EXE and works fine.
I'm working on some of the changes I'm finding
here:http://msdn.microsoft.com/library/d.../author/dhtml/overview/activating_activex.asp
but its not working. I'm referencing my control via an <object> tag, BUT I'm
referencing the actual DLL name and not a classID of the control.
I was able to get this somewhat:
var myObject = document.createElement('object');
DivID.appendChild(myObject);
myObject.width = "200";
myObject.height = "100";
myObject.classid= "clsid:UsesCarSales.DLL";
but I'm getting a JavaScript Error of 'Access Denied' so is there a way I
can get this to work so when the update comes ou my pages work correclty?