greathope123
Programmer
Hi,
In VB6, we can do
for i = 1 to 10
for j = 1 to 10
Debug.Print a(i,j),
next j
Debug.Print
next i
The result will be 10 lines with 10 elements in each line.
Can you tell me how to do this in VB.Net?
In VB6, we can do
for i = 1 to 10
for j = 1 to 10
Debug.Print a(i,j),
next j
Debug.Print
next i
The result will be 10 lines with 10 elements in each line.
Can you tell me how to do this in VB.Net?