Subj : Re: XMLHTTP, msxml.lib, msxml.h ect..... To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Mon Jun 21 2004 06:04 pm Genie wrote: >in the IDE->options->projects->directories there is a place >to specify where include files are located. in mine for instance I have .\;\bc5\include > >so if i say #include "somefile.h" it searches the current directory first, then the help file says it then searches in the directories specified with the Include (-I) option. >does this place to put the include directores represent a graphical way of specifying (-I) and if so can i put in the include box .\;\bc5\include;\bc5\include\mystandardinclude, so that if i have a file called msi.h in that directory and I say >#include "msi.h" in my source then bc5 should still find this file by searching in the \bc5\include\mystandardinclude after searching >the current and standard include directories? Yes. But I would add the drive letter to each path. and take out the first .\; as it isn't needed if you use quotes in your include. C:\bc5\include;D:\Development\Default\Headers;D:\Development\ProjectA\Headers; .