Problems in use mongodb and visual studio - c++

I am trying to use mongodb in visual studio and I am following this steps tutorial:
How I installed the Windows 7 64x C++ driver/mongoDB to work with Visual Studio 2010
But I receive the following error message:
Error: cannot open the source file: "mongo/client/dbclient.h"
Does anybody knows why I have this error?

Related

microsoft visual c++ 2005 and 2008 Installation error

I am trying to install microsoft visual c++ 2005 and 2008 but it gives error 1935. What are the methods to fix it?
I tried reintalling files but not from official webstie, but it is still not working.

XLCALL.LIB for Visual Studio 2013

We recently migrated to Visual Studio 2013 from VS2010. One of the project generates .xll using XLCALL32.lib and XLCALL dll. Now after migration to Visual Studio 2013, I am getting an error
lnk2026 module unsafe for safeseh image
There are some solutions available of disbaling SAFESEH from here:
module unsafe for SAFESEH image C++
But following this solution, Excel throws exception and crashes, while same code works fine when build on Visual Studio 2010.
I am wondering if XLCALL32.LIB is separately available for VC120 build tools.

C++ : Installing cvBlobLib library for Visual Studio 2015

I've been looking all over the web for a proper code for that library but whenever i try to build it using CMake 3.4.2 it gives me errors and when i try to build the resulting visual studio project (using Visual Studio 2015) it gives me errors as well and doesn't build successfully.
Is there any way to properly install this library and use it in Visual Studio 2015?
Thanks!
EDIT:
Screen shot of the error i get when pressing on "Generate":

error lnk1104 cannot open file 'kernel32.lib'

I'm using Visual Studio 2013 and Windows7 64bit.
When I try to build a simple cpp-project I get this error:
error lnk1104 cannot open file 'kernel32.lib'
I think I have seen this problem somewhere else and it seems an SDK problem, just try to reinstall the windows SDK for windows7 from here: http://www.microsoft.com/en-us/download/details.aspx?id=8279
Restart your Visual studio and see. I hope it helps.

Unable to compile with win sdk 7.1 in visual studio express

This specific project requires me to use the win sdk 7.1 tool set to compile, and I'm currently using vs express 2012. I am unable to compile anything if select Windows7.1SDK as the Platform Toolset, even a hello world program. The error I receive from the compiler is:
Error 1 error MSB6006: "CL.exe" exited with code -1073741515. C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\Microsoft.Cpp.Win32.targets 57 5 ConsoleApplication1
The specific line contains:
<CL Condition="'%(ClCompile.PrecompiledHeader)' == 'Create' and '%(ClCompile.ExcludedFromBuild)'!='true'"
Googling was no help, and I have reinstalled the sdk multiple times, as well as reinstalling visual studio express to use vs express 2013.