Subj : Re: Linking object files ?? To : borland.public.cpp.borlandcpp From : Ed Mulroy [TeamB] Date : Thu Dec 30 2004 07:14 pm > It's interesting that i could'nt find 'new project' ... BC++ 3.1 used Project|Open to do either of open an existing project or create a new one. I think Project|New didn't appear until about 1994. > ... I added a .cpp and the .obj and now it can't find any > includes ... If the include file that isn't found is a system file, one of those supplied by the compiler: Have you ever heard the old adage "when everything else fails, it's time to read the book"? :-) Both the manuals that came with the compiler and the help it provides tell you how to alter the paths to the include files and to the library files. However they should already be correct because the installation program initializes them to the correct values. If what you are including is your header file and not a system include then it should be included with a directive such as this: #include "filename.h" and NOT with #include Please post the paths on your machine for the compiler and for the project you are trying to build. .. Ed > Szakats Istvan wrote in message > news:41d47aa0$1@newsgroups.borland.com... > > Thanks! My problems aren't fully solved yet but atleast now i > get different errors :). It's interesting that i could'nt find 'new > project' anywhere in the gui (bc++3.1), but i did find 'open > project' so i opened a different project and changed it to my > needs. I added a .cpp and the .obj and now it can't find any > includes Unable to open include file ... > > Everything should be correct because if i compile the same > .cpp when not inside a project, the headers are found but i > get the unidentified symbols. Do i have to add the header files > to the project as well ? .