cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

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

Kittychen
12-Amethyst

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

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? 

 

1 ACCEPTED SOLUTION

Accepted Solutions

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

View solution in original post

2 REPLIES 2

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

Top Tags