well for the parent form (Im guessing that means where the listboxes are) i put
Dim f As New Form(questions)

Try
f.ShowDialog()
Finally
f.Dispose()
End Try


under a button click and i got "to many arguments for Public Sub New()"
and when i put the other code in the child form I got
"Reference to a non-shared member requires an object reference" due to my other buttons on other forms which have the code to show the parent form (eg. form2.show())

thank you