VB中 如何将一个数组中的所有内容在同一行输出到TEXTBOX中。

2025-01-07 06:24:37
推荐回答(1个)
回答1:

dim a(10) as string
text1.text=""
for i=0 to 10
text1.text=text1.text & a(i)
next i