0

I download a c++ code from the internet. But I cannot run it since it is written in the environment of visual studio 2012. But I only have 2010.

Is there any way to solve this problem? Thanks in advance.

enter image description here

Vivian
  • 207
  • 1
  • 3
  • 11
  • 1
    What do you mean you can't run it? Is the code using C++ features that VS2010 doesn't support, or are you referring to an incompatible solution file or something similar? Anyway, if the code doesn't use C++11 features it should work in VS2010; otherwise you might have to upgrade your VS, or use some other software. – jpw Aug 19 '14 at 10:34
  • It might help you: . – Richy Kun Aug 19 '14 at 11:40
  • 1
    Take a look at the answers to this question: [Converting VS2012 Solution to VS2010](https://stackoverflow.com/questions/12143383/converting-vs2012-solution-to-vs2010) – jpw Aug 19 '14 at 11:42

1 Answers1

0

One approach you could try is to create a new project on your VS 2010 and import files the are in the VS 2012 folder to your new VS 2010 project. What I suggest (what is easier) is to download a free version of VS 2012 from the Microsoft website to see the references then if you really need to recreate it in VS 2010 you can see exactly what is in the VS 2012 project and create a new one in your VS 2010.

Hangarter
  • 582
  • 4
  • 12