Does it mean that the program can only be opened once? Will it mess with the code that I have already written? What does it exactly mean?
Asked
Active
Viewed 1,010 times
1 Answers
3
It means your application is supposed to have only one instance. My last project wanted a minimized instance to pop up if somebody tried to open another one. Spotify works like that, for example.
It won't mess up your code. You just must enhance your startup code or Form.

Alexander
- 2,457
- 1
- 14
- 17
-
Your running application, any application running has or is called an instance. Open three Internet Explorers, you have three instances of Internet Explorer. – Alexander Jun 24 '13 at 13:16
-
so basically all that it means is that you cant open up the program twice – babin101 Jun 24 '13 at 13:25