tags:

views:

40

answers:

3

i have developed a small application and was working fine on developing machine but when i installed it on another computer and double click on it to start it starts and after splash screen it gives don't send error [ an error occured ] and getting closed ..... how can i fix that....is there any extension missing or there is any other problem...

+1  A: 

You have to create a Setup and Deployment project. You have to use to Install and Run the project.

Shoban
A: 

You are probably missing 3rd party assemblies. As Shoban suggested, create a setup project (ClickOnce perhaps) and make sure all the required 3rd party and yours assemblies are included.

Miha Markic
A: 

You might like to consider including a user friendly exception handler in your project. This will provide you with better information when something unexpected happens to your program.

See this article written by Jeff Atwood about exception handling.

Bender