Question how to get items in combo box to appear in a list box fb

Theazza, this is simple

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
For Each item In ComboBox1.Items
ListBox1.Items.Add(item)
Next

End Sub

Does it help?
 
Back
Top