Hai

Code:
Private Sub close_Click()
Shell_NotifyIcon NIM_DELETE, t
 Dim MyForm As Form
 For Each MyForm In Forms
     If MyForm.Name <> "Form5" Then
        Unload MyForm
     End If
Next
End
End Sub
* form5 is the startup form.

but i see still the process is running after close_Click
?