Click to See Complete Forum and Search --> : Program disappearing


mrs
September 19th, 2004, 09:59 PM
I have created a small app and have tried it on differenct computers in my company.

On one computer when the app is opened, it opens and immediately closes without any errors. This computer has OS XP.


Has anyone run into this?
Do targeted computers need .net installed?
If so, what is the solution?

Thanks

matt

Issa
September 20th, 2004, 12:52 AM
all computers need to have a special runtime environment available in order to make use of a c# assembly. so either you take an extra step to package a runtime environment with your assembly or the computer has the full .NET platform installed.

also, if you wrote a console app, it will exit without confirmation unless you specify otherwise.

mrs
September 20th, 2004, 06:13 AM
Thanks Issa