Installing VCL components into Delphi and C++Builder
To install Solid File System to component palette you need to do the following:
- Start Delphi or C++Builder IDE.
- Select Main Menu->Component->Install component
- In the dialog that appears select if you want to install the component to existing package or create new package.
- Specify Unit names (SolFSBase.dcu and SolFS.dcu) and select the package
- Click OK
Alternatively you can use the package, installed with Solid File System. The packages are located in <SolFS>\VCL\Units\DelphiX or <SolFS>\VCL\Units\BuilderX folder (X stands for IDE version number) depending on dev.tool version.
To avoid problems with compilation of projects, which use Solid File System, you need to setup paths as described. By default the paths are set during installation. However if the settings were changed or installation didn't work as expected, you can use the below procedure to setup paths.
- Delphi:
Before using Solid File System in your projects, you need to tune-up global paths in Delphi IDE. Paths are set in Main menu->Tools->Environment options. Environment Options dialog appears. Find Library or Directories tab in the page control and you will find directories configuration page.- Set the "output directory", "unit output directory" and "BPL output directory" (if present) settings for the package to the folder, where the compiled packages will be stored after compilation.
- add the name of the folder with SolFS.dcu (<SolFS>\VCL\Units\DelphiX) to the "source path" setting.
To use Solid File System in your projects, you need to add "SolFSBase" and "SolFS" to Uses clause of one or more of your units. Then you can create Solid File System objects and use them. You don't need to ship any external DLLs with your compiled project.
- C++Builder:
Before using Solid File System in your projects, you need to tune-up global paths in your development tool. Paths are set in Main menu->Tools->Environment options. Environment Options dialog appears. Find Library or Directories tab in the page control and you will find directories configuration page.- Set the "output directory", "unit output directory" and "BPL output directory" (if present) settings for the package to the folder, where the compiled packages will be stored after compilation.
- add the name of the folder with SolFS.dcu, SolFS.obj and SolFS.hpp (<SolFS>\VCL\Units\BuilderX) to the "include path" and "library path" settings.
To use Solid File System in your projects, you need to include "SolFSBase.hpp" and "SolFS.hpp" (header file) to one or more of your files. Also, you need to add SolFS.lib to the list of used libraries. You don't need to ship any external DLLs with your compiled project.
