can't handle

  • Thread starter Thread starter Bart
  • Start date Start date
B

Bart

Dear all,

I have a problem with a software I have created with .Net F1.1. I have
uninstalled an old version of the software and installed a new one.

Only 1 computer gives me the error:
"can't handle, there is something unexpected from the application"
I have tried to uninstall again and install again, change the name of the
assembly and other things, but I have no idea how to handle this problem,
that happens always and only for that computer.

Has anyone experience in this situation?

Thank you,

Bart
 
not a dot net error messages AFAIK. Contact the owner of the code to get
more info. If that is you, go looking through the code to debug this.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
Nick Malik said:
not a dot net error messages AFAIK. Contact the owner of the code to get
more info. If that is you, go looking through the code to debug this.

Thank you for the answer.
Actually the owner is me, but I don't know how to debug since the computer
is in Japanese and I have no idea what there is written.
Anyway, is it possible that the uninstallation has created any "strage"
behavior? I have installed the old version of the software (that before
worked) and now I have the same error...
 
If this machine is the ONLY installed machine in Japanese, then it is quite
possible that your new version of the app has a dependency on the code page
or character set somehow, and wrote out data to a config area or the
registry that captures that dependency, thus breaking the old version when
you reinstalled it.

Try uninstalling the app, and then scanning the registry to make sure there
are no left-over entries. Then, reinstall the framework with the Japanese
version of the framework and try to install the old version of the app
again.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
Back
Top