Skip to main content
13-Aquamarine
March 11, 2020
Solved

How to use VB API (actually COM) in JavaScript ?

  • March 11, 2020
  • 1 reply
  • 2377 views

I found few JavaScript examples, one shown below and it works fine on Windows HTA script (JavaScript). 

VBA

Set cAC = New CCpfcAsyncConnection ' VBA

JavaScript

// equivalant to the line above but in JavaScript
cAC = new ActiveXObject("pfcls.pfcAsyncConnection") // this line works fine


But I can't find other equivalent statements in JavaScript like this:  
VBA

Set Mitem = New CMpfcModelItem

JavaScript

 

Mitem = what? // don't know how to do this in JavaScript

Also this example: 
VBA

Dim type as EpfcFeatureType
type = EpfcFeatureType.EpfcFEATTYPE_HOLE

 

 

JavaScript

 

 

what's the equivalent statement in javascript? 

 

Best answer by Eike_Hauptmann

There is a JavaScript API called .Web/Link you can use. So you don't need to figure out how to use VB API in JS except I had missed something.

 

Br,

Eike

1 reply

15-Moonstone
March 12, 2020

There is a JavaScript API called .Web/Link you can use. So you don't need to figure out how to use VB API in JS except I had missed something.

 

Br,

Eike

Kittychen13-AquamarineAuthor
13-Aquamarine
March 21, 2020