MS VC++ Problem
-
Hi, please help mi with this problem. When compile my project it compiles all cpp files (not only changed one). When pressing F5 it wants to build it all and writes that obj files are not up to date or does not exist. This is happening over and over again even if i dont make any change to code. Do u have any suggestion why this is happening? - it happend accidentaly (i quess) after 3 months workings with the project ... Thanks
-
Hi, please help mi with this problem. When compile my project it compiles all cpp files (not only changed one). When pressing F5 it wants to build it all and writes that obj files are not up to date or does not exist. This is happening over and over again even if i dont make any change to code. Do u have any suggestion why this is happening? - it happend accidentaly (i quess) after 3 months workings with the project ... Thanks
You could try loading up the workspace/solution, then doing a complete rebuild. Then close the workspace/solution, and close the IDE. Then restart, and reopen the IDE. This might fix the problem. The actual problem persists in the project database. On a MS VC++ 6.0 platform, deleting the project database file might resolve the issue. -Antti Keskinen ---------------------------------------------- The definition of impossible is strictly dependant on what we think is possible.
-
Hi, please help mi with this problem. When compile my project it compiles all cpp files (not only changed one). When pressing F5 it wants to build it all and writes that obj files are not up to date or does not exist. This is happening over and over again even if i dont make any change to code. Do u have any suggestion why this is happening? - it happend accidentaly (i quess) after 3 months workings with the project ... Thanks
This usually happens when a header file has a modified date in the future. So check your system clock and the dates on any header files in your project. --Mike-- Personal stuff:: Ericahist | Homepage Shareware stuff:: 1ClickPicGrabber | RightClick-Encrypt CP stuff:: CP SearchBar v2.0.2 | C++ Forum FAQ ---- Four fonts walk into a bar. The bartender says "Hey - get out! We don't want your type in here."
-
This usually happens when a header file has a modified date in the future. So check your system clock and the dates on any header files in your project. --Mike-- Personal stuff:: Ericahist | Homepage Shareware stuff:: 1ClickPicGrabber | RightClick-Encrypt CP stuff:: CP SearchBar v2.0.2 | C++ Forum FAQ ---- Four fonts walk into a bar. The bartender says "Hey - get out! We don't want your type in here."
Thank u very much. It worked.. ;)