1 Attachment(s)
Can't access Object of JavaScript
Hi all,
Actually I designed a COM DLL using VB.Net and Its working good. I created instance for the COM Objetc and using it in my JavaScripting like,
Code:
var obj = new ActiveXObject("MyProgID");
var tab = obj.function1(); //Here function1 returns an object of 2D array.
So now "tab" having an Object and its showing values if I drill through Evalute/View but I can't access the values. I attached the screenshot of the Evalute Box...
http://www.java-forums.org/images/attach/png.gif
I tried many ways like
tab.(0).(0)
tab.[0].[0]
tab.("0").("0")
tab.["0"].["0"]
tab["0"]["0"]
(tab["0"])["0"] etc....
Can anyone help me on this?
Thanks,
Shanmugavel.C