比如arr()是一个数组 我想把整个数组全部赋给一个变量 arr()=tmp
请问应该怎样定义
在VB中怎么将一个数组赋给其他变量
答案:3 悬赏:60 手机版
解决时间 2021-03-01 19:01
- 提问者网友:聂風
- 2021-03-01 14:53
最佳答案
- 五星知识达人网友:琴狂剑也妄
- 2021-03-01 15:53
dim i(10) as string
dim tmp as string
dim j
for j=0 to 9
tmp=tmp & i(j)
next j
dim tmp as string
dim j
for j=0 to 9
tmp=tmp & i(j)
next j
全部回答
- 1楼网友:神也偏爱
- 2021-03-01 18:17
举例:
dim arr() as string
tmp = "1,2,3,4,5,6"
arr=split(tmp,",")
split(数据源,分隔符)
- 2楼网友:雪起风沙痕
- 2021-03-01 17:31
type rec
username as string
str1 as string
str2 as string
end type
private sub command1_click()
redim a(rs.recordcount) as rec
for i = 1 to rs.recordcount
a(i).username = rs("")
a(i).str1 = rs("")
a(i).str2 = rs("")
rs.movenext
next
end sub
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯