home *** CD-ROM | disk | FTP | other *** search
-
- Using dCLIP with ACCOUNT MATE
- -------------------------------
-
- dCLIP and dCLIPRUN have been tested with the ACCOUNT MATE accounts payable
- system. The AP system consists of approximately 210 .PRG files.
-
- Creating dynamic libraries for ACCOUNT MATE AP
- -----------------------------------------------
-
- We have included the response files necessary to make an AP system by
- including all the object files in six dynamic libraries. The response files
- are named APMIS, APUTL, APPOS, APMAN, APREP, and SIS. These files will
- create the dynamic libraries APMIS.DLB, APUTL,DLB, APPOS.DLB, APMAN.DLB,
- APREP.DLB and SIS.DLB respectively.
-
- 1. Compile each .PRG file by using the -m -l option to create
- a seperate .OBJ file for each module. This may be accomplished by
- using the APCCL.BAT file.
-
- 2. Create the six dynamic libraries by running the APCDLB.BAT file.
-
- 3. Insert the following commands into your APC.PRG file
-
- LIBLOAD('APMIS')
- LIBLOAD('APUTL')
- LIBLOAD('APPOS')
- LIBLOAD('APMAN')
- LIBLOAD('APREP')
- LIBLOAD('SIS')
-
- This will load the dynamic libraries before starting the application.
-
- 3. Compile the APC.PRG file as follows:
-
- CLIPPER -m -l
-
- 4. Run the APC application using the DCLIPRUN runtime engine as follows:
-
- DCLIPRUN APC
-
- 5. Run the APC application from the DCLIP dot prompt as follows:
-
- DO APC
-
-
- NOTE:
-
- You can "optimize" the APC application by loading the dynamic libraries only
- as they are needed by the application rather than loading them all in the
- main menu.