
Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Bjarne,
>
[quoted text clipped - 3 lines]
> If it is, do you have any logging in your program to catch unhandled
> exceptions which could provide some more information?
Thanks for your suggestions
I am sure that .NET framework 2.0 (and 3.0) is installed on the machine.
The OS is WinXP with SP2, as is my own.
I don't get any logging information, so I suspect that the program is
terminated before I get any chance to log anything unexpected. Not that I
do log much in the release version (if any), but I could do that, or give
them a debug version, if that would help. Anyway, I suppose an unhandled
exception would at least give you a dialog box, telling about the unhandled
exception, but I don't even get that.
Cheers
Bjarne Nielsen
Nicholas Paldino [.NET/C# MVP] - 24 Aug 2007 16:26 GMT
Is there any code on startup that you are executing which could be doing
this? Anything in the constructor of your forms? Are you using any COM
objects which you might not have registered?
More information is needed, and I'd advise you to put some logging in
there to find out if your program is even starting up at all.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
>> Bjarne,
>>
[quoted text clipped - 20 lines]
> Cheers
> Bjarne Nielsen
Alun Harford - 24 Aug 2007 18:03 GMT
>> Bjarne,
>>
[quoted text clipped - 15 lines]
> exception would at least give you a dialog box, telling about the unhandled
> exception, but I don't even get that.
Yes, that should happen.
Are you using Application.Exit() or Environment.Exit() around anywhere
in your code?
Alun Harford