Visual c++ in managed environment with Framework and no visualstudio
-
Hi, Iam using a c++ dll in my .net application.It is running fine on the system where visual studio 2005 is installled. In the deployment environment we have only framework2.0 installed on the machine.Then Iam getting a pop-up error as "Microsoft visual c++ runtime library Runtime error c:\testapp\bin\debug\test.exe The application has requested the application to terminate in the unusual way Please contact the application's support team for more information" Please kindly help ASAP
-
Hi, Iam using a c++ dll in my .net application.It is running fine on the system where visual studio 2005 is installled. In the deployment environment we have only framework2.0 installed on the machine.Then Iam getting a pop-up error as "Microsoft visual c++ runtime library Runtime error c:\testapp\bin\debug\test.exe The application has requested the application to terminate in the unusual way Please contact the application's support team for more information" Please kindly help ASAP
One thing you can look at to troubleshoot this issue...use depends.exe to see what dependencies you have in your dll. If you suspect it might be the framework, perhaps look at the runtime libraries like MSVCR80.dll to see what versions are on your dev system vs your deployment system. Also, you didn't really provide much information, so I'm not sure if anyone can really provide much feedback.
-
One thing you can look at to troubleshoot this issue...use depends.exe to see what dependencies you have in your dll. If you suspect it might be the framework, perhaps look at the runtime libraries like MSVCR80.dll to see what versions are on your dev system vs your deployment system. Also, you didn't really provide much information, so I'm not sure if anyone can really provide much feedback.
My application working fine in the dev environment.But in the testing /production environment it is not working because that environment has only windows server 2003 IIS .net2.0 framework In my application I have Used some microsoft VC++ dll's also along with .net dll's. Now Iam getting "RUNTime Error" pop-up screen message as below " The Application has been terminated in an Unusual Way" On googling i came to know that some dll's like msvcrt.dll of windows server 2003 has to be changed...But Iam not pretty sure about it.. In Production/test environment there is only framework installed ,but there is no visual studio installed on it.may be due that this error may occur... So kindly post your suggestions and views to help me I tried the following as suggested by you: 1. I have installled the redistributable package suggested by you. after installing i restarted the PC even now also I got the same runtime pop-up error. 2. Then I checked even with the dependency walker for the dll. I found that there is no miising dll. 3. Then I tried by installing Visual C++ express edition..even then also i got the same pop-up error. Kindly help me.....