vbcomponent in javascript
-
Hi, I have developed a vbcomponent(Activex dll).the component has the function like this SynonyList(Words, WordList, MeaningArray, cou)-Words,wordlist,meaningarry,cou are variant. if u pass a word in this fucntion it returns wordlist,meaningarry as array of strings,cou as integer.if i use this in vbscript it works .but javascript i don't know how to pass it to the function. pls give me ur suggestions.
-
Hi, I have developed a vbcomponent(Activex dll).the component has the function like this SynonyList(Words, WordList, MeaningArray, cou)-Words,wordlist,meaningarry,cou are variant. if u pass a word in this fucntion it returns wordlist,meaningarry as array of strings,cou as integer.if i use this in vbscript it works .but javascript i don't know how to pass it to the function. pls give me ur suggestions.
I think this process of component instantiation is works good function fun1() { var objVar; var x; objVar = new ActiveXObject("ProgID"); x = objVar.YourMethod(required Aurguments); } Raveendra Madupu Member Technical Staff Network Programs India Limited raveendra@engineer.com
-
I think this process of component instantiation is works good function fun1() { var objVar; var x; objVar = new ActiveXObject("ProgID"); x = objVar.YourMethod(required Aurguments); } Raveendra Madupu Member Technical Staff Network Programs India Limited raveendra@engineer.com