0

I am getting the following error when i converted a project from vc6.0 to vs2008

The error code is

Error 1 fatal error C1083: Cannot open source file: 'FpDebug/BalanceGrabber.pch': No such file or directory c1xx

where BalanceGrabber is my Project

subbu
  • 3,229
  • 13
  • 49
  • 70

1 Answers1

0

.pch is a Pre-Compiled Header: the output of StdAfx.cpp, essentially. A simple clean/rebuild should fix this, otherwise try clearing the output folders manually.

Simon Buchan
  • 12,707
  • 2
  • 48
  • 55