Currently, I am dealing with an issue that is driving me close to the edge
In my HTA, I have a JavaScript code that needs to interact with various COM objects
var com1= new ActiveXObject("progID");
While this setup works smoothly with most COM objects, it encounters trouble with one particular object that implements both IComOne and IComTwo interfaces
Is there a way to instruct the com1 object to only utilize the "IComOne" interface?
I would greatly appreciate any suggestions...