I am developing an ActiveX control for IE which is invoked through javascript. The ActiveX control is developed in visual basic and it has an array of strings. How will I use this array of strings in javascript.
Eg :-
var a = new Array()
a = objActiveX.GetArray(); // call to active x returns array of string, how will I loop through this in javascript.
The above line does not work. I want to loop through each string in javascript.
Advise.