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:

  1. Make folder under BC5\SCRIPTS, for example MYSCRIPT

  2. Add the path to the folder to Options\Environment\Scripting\Script Path

  3. 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
    
    
  4. Add loader.spp in Options\Environment\Scripting\Startup Scripts

  5. 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 home Back to main