這是什麼錯誤的含義是什麼?對不起,這是我第一次使用Visual Basic 2010年,我不熟悉這種類型的錯誤,我用這個選擇在列表框中的所有文件,並試圖移動或複製到其他形式的另一個列表框。的Visual Basic 2010列表框錯誤
錯誤1'ToArray'不是 'System.Windows.Forms.ListBox.ObjectCollection'的成員。
這是我使用的代碼。
私人小組Button1_Click_1(BYVAL發件人爲System.Object的,BYVALË作爲 System.EventArgs)把手Button1.Click
如果RadioButton1.Checked然後
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
誰能幫我和這個?
謝謝我能解決它! :) – stargaze07