| Applying science to business management |
  
include
Format: include( file )
Arguments: [text] file Name(s) of the file(s) to
import
Returns: [text] file
Description: This primitive imports library functions
into the active application. All functions in the library file
are included in the active application and are available like
primitives.
If file does not contain full path information, the
file is assumed to reside in the same directory as the .mdl or
.dsb application file. If you include path information, remember
that backslash characters must be typed twice in text literals
(e.g., "c:\\temp.txt"
instead of "c:\temp.txt").
Note: Instead of calling this primitive directly, you
usually use the script options dialog box to list the relevant
library files. You can access this dialog box by clicking Script
Options in the Tools menu.
Examples: include("ahplib.dsb")
= Imports the contents of the library file ahplib.dsb
See Also: open
|