Borland C++ 5.0 Scripts
This is a collection of scripts for enhancing BC++ 5.0 IDE. 
If you have written an useful script, and want to share it with others, please send it to 
me.
Here are the scripts by category:
Also see the scripts on the Borland C++ 5.0 FAQ site.
To set up the scripts:
	- Make folder under BC5\SCRIPTS, for example MYSCRIPT
	
 - Add the path to the folder to Options\Environment\Scripting\Script Path
	
 - Create there a simple shell script called loader.spp, which can look like:
// loader.spp
import scriptEngine;
if (!scriptEngine.IsLoaded("braces.spp"))
  scriptEngine.Load("braces.spp");
  
// Add new scripts here
	 - Add loader.spp in Options\Environment\Scripting\Startup Scripts
	
	
 - Download new scripts to this folder and add them in loader.spp
	
 
Here you can download most of the scripts in a single file, 
with a Loader.spp which will load all of them.
Back to main