home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Du Jour
/
SoftwareDuJour.iso
/
BUSINESS
/
DBASE
/
VIEWGEN.ARC
/
VIEWGEN.CFG
< prev
next >
Wrap
Text File
|
1985-11-05
|
5KB
|
124 lines
* VIEWGEN.CFG
* This is the ViewGen Configuration file.
* It is pre-set for the IBM PC (and most others).
*
* You can edit the following parameters to customize
* your copy of ViewGen.
*
* "Author" and "Copyright" are used in generated program headers.
* They can be character strings of up to 64 characters.
Author = "Your Name"
Copyright = "Your Company, All Rights Reserved"
*
* "Product" and "Version" allow the switching of ViewGen
* to generate code for various products and versions.
* The products and versions currently supported are:
*
* Product Version Notes
* --------- ------- -----------------------
* dBASE III 1.1
* dBASE III DR (Developer's Release)
* dBASE III PLUS Version 2.0
* Clipper Summer Summer, 1985
Product = "dBASE III"
Version = "1.1"
*
* "FieldFillChar" is used to pad Label names when they are
* first assigned field name values. FieldFillChar can be any
* ASCII character. The default is ASCII 32.
FieldFillChar = " "
*
* "BottomLineChar" is the bottom horizontal line generated
* by ViewGen. It can be changed to any ASCII char.
* The default is the graphics horizontal line (Alt-196).
* You may want to try the hyphen character (ASCII 45).
BottomLineChar = #196
*
* "SelectAttribute" and "BoxAttribute" are the video attributes
* a field or box will display when it is SELECTed. It can be in
* the range 1..255. The following attributes are possible:
*
* Attr Color Monochrome
* ---- --------- ----------
* 1 -- Blue Underline
* 2 -- Green Normal
* 3 -- Cyan Normal
* 4 -- Red Normal
* 5 -- Magenta Normal
* 6 -- Brown Normal
* 7 -- LightGray Normal
*
* For high intensity add 8 to the number selected.
* For blinking add 128 to the number selected.
*
* A SelectAttribute of 9 and BoxAttribute of 112 is recommended for
* monochrome and color monitors. A SelectAttribute and BoxAttribute
* of 15 is recommended for the Compaq.
*
SelectAttribute = 9
BoxAttribute = 112
*
* "RunTime" allows the ViewGen code to be generated with either
* compressed command files or not. The default is OFF.
RunTime = OFF
*
* "Video" will set the recommended video defaults for
* MONOCHROME, COLOR, COMPOSITE, and DUAL video (such as the Compaq).
* The default is COLOR.
Video = COLOR
*
* The color attributes used in the SET COLOR TO commands
* for the code generator can be customized to different values.
* The following table summaries the color attribute information:
*
* Parameter Lines Monochrome/Color Dual Video
* ----------- ------ ---------------- ----------
* StatusColor 0 "B/,/W" "B+/,/W"
* WindowColor 1..20 "R+/,/W" "R+/,/W"
* PromptColor 21..23 "GR/,/W" "GR+/,/W"
*
* The default values are for Monochrome/Color.
*
StatusColor = "B/,/W"
WindowColor = "R+/,/W"
PromptColor = "GR/,/W"
*
* "BoxString" is a string of eight ASCII characters used to create
* a box. If less than eight characters are assigned to BoxString,
* ViewGen will duplicate the last character. From left to right,
* the eight characters are used as follows:
*
* Char Description Default
* ---- ---------------------- -------
* 1 -- Upper left corner Alt-218
* 2 -- Upper horizontal line Alt-196
* 3 -- Upper right corner Alt-191
* 4 -- Left vertical Alt-179
* 5 -- Right vertical Alt-179
* 6 -- Bottom left corner Alt-192
* 7 -- Bottom horizontal line Alt-196
* 8 -- Bottom right corner Alt-217
*
* The string of characters can be entered in quotes or as a
* sequence of #999s. Where 999 can be in the range 0..255.
*
* BoxString = "┌─┐││└─┘"
BoxString = #218#196#191#179#179#192#196#217
*
* "BoxWidth" and "BoxHeight" give the width and height for a box
* when it is first created. BoxWidth is a number in the range 2..79,
* and BoxHeight is a number in the range 2..20. The default values
* for BoxWidth and BoxHeight are 30 and 5.
BoxWidth = 30
BoxHeight = 5
*
* "LockFieldPtrs" toggles the field pointers ON or OFF between
* Forms View and Table View. The default is OFF.
LockFieldPtrs = OFF
*
* "ConfirmDel" toggles the CONFIRM messages when Del and Ctrl-U
* are pressed. The default is ON.
ConfirmDel = ON
*
* EOF: VIEWGEN.CFG