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
中输出相同的输出,当我按下按钮然后像上面那样输出相同的输出
显示