VB中 怎么将text中的数据如1 2 3 3 4 4 5 6 6 读入到一个二维数组a(3,3)中 急求 可以加财富的

2024-12-16 03:18:25
推荐回答(2个)
回答1:

循环赋值就好了。

dim a(1 to 3, 1 to 3)
dim ar,i as long ,j as long ,n as long 
ar=split(text1.text)
for i=1 to 3
    for j=1 to 3
        a(i,j)=ar(n)
        n=n+1
    next
next

回答2:

text是指什么?