Hello,
I need to fill an array with Name,X-Value and Y-Value.
In my Code I will get with strDevName the name, strSymx the x value and with strSymY the Y-Value.
There will be 13 names,x and Y values.
No I want to save them in an array. So that I will have something like a table Name| X | Y
How is this in Vbscript possible?
for each intSymId in intSymIds
E3Dev.SetId intSymId
strDevName = E3Dev.getname
If instr(strDevName,"-I") = 1 Then
E3Sym.SetID intSymId
E3Sym.GetSchemaLocation strSymX, strSymY, strSymGrid
End If
Next
I need to fill an array with Name,X-Value and Y-Value.
In my Code I will get with strDevName the name, strSymx the x value and with strSymY the Y-Value.
There will be 13 names,x and Y values.
No I want to save them in an array. So that I will have something like a table Name| X | Y
How is this in Vbscript possible?
for each intSymId in intSymIds
E3Dev.SetId intSymId
strDevName = E3Dev.getname
If instr(strDevName,"-I") = 1 Then
E3Sym.SetID intSymId
E3Sym.GetSchemaLocation strSymX, strSymY, strSymGrid
End If
Next