BORLAND C++ 5.01 HOWTO 1. Creating a project: Copy the source files into a folder. Choose File-->New-->Project... from the menu. Navigate to the directory where your files are and type in the name of the project. The extention of a BC++ project file is .ide. In the New Target dialog choose Target Type: Application [.exe] Platform: Win32 Target Mode: Console A project window pops up. It contains a tree with nodes for different files. You can delete ("Del" works) all of these nodes (.cpp, .rc, .def) except the .exe node. Go stand on the ".exe" node and add all our .cpp files to the project (these will be the files to compile and link to make that target .exe file). "Ins" or right-click works. Now you can double-click on a source file to open that file in editor. Hit the "Lightning button" (or Ctrl+F9) to compile and run. In the Messages window, ignore the warnings (yellow exclamation marks), look for the errors (red exclamation marks). Double-clicking on an error opens the corresponding file in the editor on the incorrect line. 2. I cannot fully support Borland at the time. I have no access to versions other than 5.01. Sorry.