这个错误是什么意思?抱歉,这是我第一次使用 Visual basic 2010,我不熟悉这种错误,我用它来选择列表框中的所有文件,并尝试以其他形式移动或复制到另一个列表框。
错误 1“ToArray”不是“System.Windows.Forms.ListBox.ObjectCollection”的成员。
这是我使用的代码。
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) 处理 Button1.Click
If RadioButton1.Checked Then
Dim itemsToMove = ListBox1.Items.ToArray() For Each item In itemsToMove Form2.lstP.Items.Add(item) ListBox1.Items.Remove(item) Next Form2.Show() End If End Sub
有人可以帮我弄这个吗?