Possible Duplicate:
Error message Cannot open include file: ‘gxall.h’: No such file or directory
Hi I am working on VC++ 6.0, I have included gxall.h in stdafx.h file but while building code I am getting error :
fatal error C1083: Cannot open include file: 'gxall.h': No such file or directory
// Objective Grid
#include <gxall.h>
You need to setup the path to Objective Grid includes folder in your project properties.
Select menu
Project->[YourProjectName] Properties
then editC/C++->General->Additional Include Directories
line adding your path there, e.g.\3rdParty\OGrid12.0.2\Include
.