I have an ActiveX (3rd party, no source) with a method that has a reference parameter like this:
HRESULT GetSomething(
[in] short param1,
[out] BSTR* someString);
In C++ you'd execute it like this:
BSTR someString = NULL
m_activeX.GetSomething(0, &someString);
How would I execute this via Javascript? All other functions in the ActiveX work fine, but this one looks impossible? If not possible in Javascipt, is it in VBScript? I have had no luck in either.
BTW, This must be done in Internet Explorer