Visual Studio


July 19, 2007: 3:44 am: hcanoApplications, Errors, Technology, Visual Studio, Windows

When you try to execute an application the following error appears:

“Application Error : The application failed to initialize properly (0xc0000135). Click on OK to terminate the application.”

This is an easy fix.

The application developer used the .Net Framework, juts install the framework and Re-run the application

Remember to Reboot

Easy? Feeling grateful? Just leave a comment saying thanks :)

December 7, 2006: 7:16 pm: hcanoApplications, Compile, Developer, How-To, SySAdmin, Visual Studio, Windows

So you need to develop some applications to your enterprise, and you need to call some c++ ou vc++.

Everything is working but when you deploy your application, common is one executable, it gives error and says

“This Application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.”

And you start to scratch your head.

So what is the problem:

  1. You want to just deploy or execute one simple program compiled no dlls, ou another files;
  2. You want it to be easy, just click and run

Now the solution:

In Visual Studio, you have to tell it to compile and link the dependencies and libraries together in executable.

Now stop talking and let´s go to solution:

  1. Open the Projects Proprierties
  2. Go to Configuraration – General
  3. In the use of MFC choose statically like in the picture below

General Proprierties

4. After that go to Linker -> Input and put all your libs that your executable needs like picture below:

Linker Input Static

Build it and be happy!

Did you like it? Resolve your problem? Please be nice and leave a comment it is comforting :)