OK, a friend of mine helped me fix this, basically on Form1 I had to change the code to this:
VB Code:
Dim csvFile As String Dim Form2 As New Form2 If Form2.ShowDialog() = DialogResult.OK Then csvFile = Form2.listItem End If
and on Form2 I needed to add
Me.DialogResult = DialogResult.OK
just before closing the Form.
wooooooooooo.![]()





Reply With Quote