Answers for "Getting listbox items to display to another form"

0

Getting listbox items to display to another form

Dim a As Integer
ListBox1.Items.Clear()
For a = 0 To Form1.ListBox1.Items.Count - 1 Step 1
    ListBox1.Items.Add(Form1.ListBox1.Items.Item(a).ToString)
Next
Posted by: Guest on December-07-2020

Code answers related to "Getting listbox items to display to another form"

Browse Popular Code Answers by Language