I'm working with a WebBrowser control in VB6. I know I can access global JavaScript objects with myWebBrowser.Document.Script.myGloblaJSObject
. How do I pass that object to another VB function? The debugger tells me it is of type JScriptTypeInfo
but simply using that type gives me a "User-defined type not defined" compile error. Which reference defines JScriptTypeInfo
? I'm already including references to Microsoft HTML Object Library
and Microsoft Internet Controls
.
1
votes