Application Freezes when Screen settings change

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm writing an application in C# 2.0. The application runs fine until the
screen settings are changed, and then it freezes. How do I fix this problem?
I've noticed that other applications do not freeze when the screen settings
have been changed. Currently we're running the application in Windows XP
Professional.

Thank you.
 
anonymous said:
I'm writing an application in C# 2.0. The application runs fine until the
screen settings are changed, and then it freezes. How do I fix this problem?
I've noticed that other applications do not freeze when the screen settings
have been changed. Currently we're running the application in Windows XP
Professional.

Thank you.

I have a little more information on the problem. The program actually
starts off with an auto updater piece. The auto updater actually runs
seperatly from the rest of the program. It will pull the dll's for the main
project down from the server, overwrite the old ones, create a new AppDomain
for the actual programm's executable and launch the program. I've noticed if
I launch the program seperatly from the Auto Updater this problem does not
occur. It is imperative that I have an Auto Updater, and it has to run
seperatly from the rest of the program in order to allow copying over the old
Assemblies.
 
Back
Top