home *** CD-ROM | disk | FTP | other *** search
-
- {Help Text compiled by MAKEHELP from T.A.Darcos}
-
- CONST
- Help_Text: ARRAY[1..26] OF STRING[80] =(
- {FIELD 1}
- '**** CALCULATOR HELP - First Operand ****',
- ' ',
- 'This program does a calculation on two numbers. The real purpose of this',
- 'program is to demonstrate the on-line help capability provided by the',
- 'T.A. Darcos MAKEHELP facility. Right now, you should enter the first',
- 'number to be calculated upon, such as the 3 in 3+7, 3*7, 3-7 or 3/7.',
- ' ',
-
- {FIELD 2}
- '**** CALCULATOR HELP - Operator ****',
- ' ',
- 'Now you have to declare what operator to use. Enter a + to add, a * to',
- 'multiply, a - to subtract or a / to divide, such as in',
- '3+7, 3*7, 3-7, or 3/7.',
- ' ',
-
- {FIELD 3}
- '**** CALCULATOR HELP - Invisible Text ****',
- ' ',
- 'Reproduction, use or examination of this program or file by',
- 'any person at any time is subject to severe automatic penalties including',
- 'execution by torture, starvation, suffocation, and confiscation of assets.',
- 'This is an invisible help text to show that not all help fields have to',
- 'be used, so fields can match numbers even if they are simply unused text.',
-
- {FIELD 4}
- '**** CALCULATOR HELP - Second Operand ****',
- ' ',
- 'Now you need to enter the second number. Right now, you should enter the',
- 'second number to be calculated upon, such as the 7 in 3+7, 3*7, 3-7 or 3/7.',
- 'After you do this, the result will be computed and displayed.',
- ' '
- );
-
- Help_Index: ARRAY[1..4] OF ARRAY[1..2] OF BYTE = (
- (1,7),(8,6),(14,7),(21,6)
- );
-
-