Hello,
I have defined a string variable with 2 dimensions. If I execute this code in B4i I get a different result like in b4j.
I would expect the same result in b4i as in B4j. Can someone explain me what I am doing wrong?
dim lv_array(2,2) as string
lv_array(0,0) = "containername"
lv_array(0,1) = "text"
lv_array(1,0) = "fieldname"
lv_array(1,1) = "text"
Result in B4J:
lv_array
-0
---0 containername
---1 text
-1
---0 fieldname
---1 text
Result in B4i
lv_array
0 containername
1 text
2 fieldname
3 text
Many thanks in advance
Michael
I have defined a string variable with 2 dimensions. If I execute this code in B4i I get a different result like in b4j.
I would expect the same result in b4i as in B4j. Can someone explain me what I am doing wrong?
dim lv_array(2,2) as string
lv_array(0,0) = "containername"
lv_array(0,1) = "text"
lv_array(1,0) = "fieldname"
lv_array(1,1) = "text"
Result in B4J:
lv_array
-0
---0 containername
---1 text
-1
---0 fieldname
---1 text
Result in B4i
lv_array
0 containername
1 text
2 fieldname
3 text
Many thanks in advance
Michael