Cannot get directory with "..\"

I programming in VS2012. When I add lib in Additional Include Directory, I use "..\" but it does not show my folder in D drive. And the same problem when I use "#include" to add lib. The directory which VS2012 shows me, it looks like "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7"
Could someone help me solved it?
You can add the library directory to your project directly.

in VS, press Alt + F7 to open project properties.

on the left side, under "Configuration Properties" select "VC++ Directories"

edit "include directories" and add the folder where your headers are manually.

once that's done, you should be able to use a direct #include "file.h" in your code without any path info.
Topic archived. No new replies allowed.