Reputation: 2911
My question is why would a .net program operate differently between different computers (both with the same OS)?
Here is the background info:
Now this dialog works if the unfortuniate does happen etc...
BUT,
When I install this application on another workstation that has Win 7 64bit then the software does not handle the exception in the same way and it crashes at various points that my test version does not?
We are trying a re-install of the .NET framework.
Upvotes: 1
Views: 1881
Reputation: 9209
There are many reasons why this could be happening and I would check first in the OS event logs to see if they give you any pointers on where to look.
The obvious points to check: Debug/Release build.
OS patch mismatch (particularly involving .NET)
NET version mismatch.
DLL dependency version mismatches.
Dependent DLLs not correctly registered.
Mismatch in paths for items.
Anti-virus software.
Hardware related differences.
And a big bugbear on Vista/Windows 7 program access rights for the program.
I would start by installing a release version of the program on your development machine.
Upvotes: 2