vb中,用变量作为数组名可以吗?
例如
arrrrstr()=("as","se")
for i=0 to 1
for j=1 to 25
linestr=aeerrstr(i)(j)&","
next j
next i
好久不用VB了,
好像是這樣的
dim arrrrstr(2,25) as string
将arrstr(i)作为变量名?可以的
AgoniAngel大侠:怎么实现啊,直接用通不过的
这样还真没试过.即使可以,也不建议使用.--------多变量建议使用表格代替,若果是控件,可用其tag代替存储.
这样还真没试过.即使可以,也不建议使用.--------多变量建议使用表格代替,若果是控件,可用其tag代替存储.
vb有arry()
mArry=arry("123","abc","你我他")