CGACURS..............Disable extended cursor capability for CGA/EGA systems
SET CLIPPER..........Clipper Environment
SET CLIPPERCMD.......Set default compiler options
SET DCLIP............Location of dCLIP files
SET INCLUDE..........Define a list of paths to search for header files
CGACURS
Disable extended cursor capability for CGA/EGA systems
Syntax:
Description:
CGACURS prevents the use of the extended cursor capability of
the EGA/VGA. Use this command if you have problems with the
cursor disappearing or changing size when dCLIP shells out to
your editor or other DOS programs.
SET CLIPPER=CGACURS;(param list)
or
DCLIP //CGACURS
SET CLIPPER
Clipper Environment
Syntax:
Description:
dCLIP adheres to all the values assigned to the SET CLIPPER=
(envir) environment variable or the BLINKER EXECUTABLE CLIPPER=
(envir) "burned-in" values when using Blinker to create your
dCLIP.EXE program.
The X parameter is used to establish the amount of dynamic-link
pool to allocate at startup. The default value of 70K is
"burned-in" to the dCLIP.EXE, but may be overridden with the
SET CLIPPER=X(memory) command before starting dCLIP. If you
get OBJECT TOO BIG errors often, then you will want to increase
the X(memory) value. If you get CONVENTIONAL MEMORY EXHAUSTED
errors often, then you will want to decrease the X(memory)
value.
See the Clipper Guides for more information on using the
remaining parameters:
SET CLIPPER=[E:(nExpandedKbytes)]
[;F:(nHandles)]
[;X:(nKbytes)]
[;BADCACHE]
[;CGACURS]
[;DYNF:(nHandles)]
[;NOIDLE]
[;SWAPK:(nBytes)]
[;SWAPPATH:'(path)']
[;TEMPPATH:'(path)']
SET CLIPPERCMD
Set default compiler options
Syntax:
Description:
Several dCLIP commands and functions call the CLIPPER.EXE
compiler. The DOS SET CLIPPERCMD=(options) command is used to
define the default options for the compiler.
The CLIPOPT=(options) command in your DCLIP.SYS file will add
to these compiler options.
SET DCLIP
Location of dCLIP files
Syntax:
Description:
dCLIP functions look in the drive and directory defined by the
SET DCLIP (DOS) environment variable for all dCLIP system
files. If no SET DCLIP variable has been set, then the
directory that contains the .EXEcutable program (dCLIP.EXE or
the program using the dCLIP functions) will be searched.
This includes the following files:
DCLIP.SYS - configuration file
DCLIP.CFG - "turbo" configuration file
*.DCB - batch files
DC*.DBF - database files
DC*.NTX - index files
DCCOLOR.AR - color configuration file.
AUTOEXEC.DCB - startup batch file
See Also:
SET DCLIP
dc_setdclip()
SET INCLUDE
Define a list of paths to search for header files
Syntax:
Description:
Several dCLIP commands and functions call the CLIPPER.EXE
compiler. The DOS SET INCLUDE=(path spec) command is used to
define the path to search for #include files when calling the
Clipper compiler from dCLIP.
The SET INCLUDE path is also searched when using the INCLUDE or
#INCLUDE commands at the dot prompt to load your header files
for use with the interactive pre-processor.
See Also:
INCLUDE
dc_preinclude()