I´ve got 2 forms. If I click on a button on the first form I make the second panel popup which works fine. But I just cant seem to add items to the listbox on that other form. Beneath is an example of what I've got so far. Can anyone tell me what I'm doing wrong? Thanks in advance.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Obj As New Form2
Obj.ShowDialog()
Form2.ListBox1.Items.Add("dafdfsafd")
End Sub
Obj.Show()