将文本添加到TextBox

时间:2012-01-01 19:38:30

标签: vb.net-2010

Dim b As String
Dim a As Integer
For a = 0 To ListBox1.Items.Count
   b = ListBox1.Items(a)

   ListBox2.Items.Add(TextBox3.Text + b)
Next a

输出与:

相同
abchello
abcbr
abcali

它的输出很好,但我想在listbox1中打印相同的输出,而不是在lisbox2中 例如:

ListBox1.Items.Add(TextBox3.Text + b)

我想在listbox1中输出相同的输出,当我按下按钮然后像上面那样输出相同的输出 显示

0 个答案:

没有答案