I've got this code in my program

If App.PrevInstance then
MsgBox "A previous instance running"
End
End If




If I run the exe, exit the program, then restart the program I get the prev instance message. This is happening even when I am the only one running the program. So, I figure something must be left open when I exit the program. How can I found out what is causing App.Prev.Instance to be true?

Thanks for the help!!