OK, a friend of mine helped me fix this, basically on Form1 I had to change the code to this:

VB Code:
  1. Dim csvFile As String
  2. Dim Form2 As New Form2
  3. If Form2.ShowDialog() = DialogResult.OK Then
  4.   csvFile = Form2.listItem
  5. End If

and on Form2 I needed to add

Me.DialogResult = DialogResult.OK

just before closing the Form.


wooooooooooo.