Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
For i = 0 To List3.ListCount - 1
If i = List3.ListCount - 1 Then
Text5.Text = Text5.Text & List3.List(i)
Else
Text5.Text = Text5.Text & List3.List(i) & Chr(13) + Chr(10)
End If
Next i
Open App.Path & "\save.dat" For Output As #1
Print #1, Text5
Close #1
If StopSearch = False Then
StopSearching
End If
StopSearch = True
End Sub