Access .dll or .ocx from Javascript

C

Thread Starter

Chris Schene

Hi,

I want to access a VB .dll or .ocx from Javascript on a Honeywell Experion system.

Basically, I want to add some common code to the .ocx or .dll so I don't have replicate it in the Javascript code.

A book reference would be great.

Thanks,

Chri Schene
 
Hi Chris Schene,

I am looking for the same solution but havent found yet. If you have found one would you please share it with me?

Thanks,

PR
 
C

Chris Schene

Hi,
In VB script try

set thisobject = CreateObject("class.name")

If you are doing this on HMI web, if you do not make the .dll object "safe for scripting" you will get an irritating popup message.
 
Top