TIP: Click on subject to list as thread! ANSI
echo: qedit
to: ALL
from: ERIC STORK
date: 1998-03-29 07:49:00
subject: Re: help files

From: Eric Stork 
--=====================_891137954==_
Content-Type: text/plain; charset="us-ascii"
At 08:07 AM 3/28/98 +0000, you wrote:
>Hi all
>A simple question, how do I create help files, ie the ones like
>tsehelp.hlp
I'ts very easy.  I attach one of my personal HLP files.  From it you can
see how it's done.
In my UI file, I include the two lines below to call and load the file:
           quickhelp(HELPEOS2)
#include ["eos2.hlp"]      // FIND help   mapped to #F1
Eric
--=====================_891137954==_
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment; filename="Eos2.hlp"
helpdef HELPEOS2
    title =3D "Find & Replace Command Syntax"
"         =C9=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=
=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=
=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=BB         "
"         =BAFIND: ShortCut F2 | Reglr. #F2 | Comprsd ^F2 | Incremental ^I=
=BA         "
"         =CC=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=
=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=
=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=B9         "
"         =BA SYMBOL       MAJOR REGULAR EXPRESSION OPERATORS             =
=BA         "
"         =C7=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=B6         "
"         =BA  .       Match any single character (except EOL)            =
=BA         "
"         =BA  ^       Anchor to beginning of line (or block)             =
=BA         "
"         =BA  $       Anchor to end of line (or block)                   =
=BA         "
'         =BA  |       "Or" operator: match either of two patters         =
=BA         '
'         =BA  ?       Optionally matches preceding char or pattern       =
=BA         '
"         =C7=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=B6         "
"         =BA  [ ]     Identifies a RANGE of chars                        =
=BA         "
"         =BA  {[x-x]} Find ANY char in defined range of chars            =
=BA         "
"         =BA           e.g., [2-7], or [f-h]                             =
=BA         "
"         =BA  {[~ ]}  Find ANY EXCEPT chars in defined range of chars    =
=BA         "
"         =C7=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=B6         "
'         =BA  \       Escape operator; overide RegExpr if "X" option used=
=BA         '
"         =C7=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=B6         "
"         =BA  \a      Match alert (beep) char (ASCII 7)                  =
=BA         "
"         =BA  \b      Match backspace char (^H or ASCII 8)               =
=BA         "
"         =BA  \f      Match formfeed char (^L or ASCII 12)               =
=BA         "
"         =BA  \n      Match newline (line feed) char (^J or ASCII 10)    =
=BA         "
"         =BA  \r      Match return char (^M or ASCII 13)                 =
=BA         "
"         =BA  \t      Match tab char (^I or ASCII 9)                     =
=BA         "
"         =BA  \v      Match vertical tab char (^K or ASCII 11)           =
=BA         "
"         =BA  \c      Position cursor within located string (Find cmd)   =
=BA         "
"         =C7=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=
=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=C4=B6         "
"         =BA \Xnn     Matches hexadecimal equiv                          =
=BA         "
"         =BA \Dnnn    Matches decimal equivalent                         =
=BA         "
"         =BA \Onnn    Matches octal equivalent                           =
=BA         "
"         =C8=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=
=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=
=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=CD=BC         "
end
--=====================_891137954==_
Content-Type: text/plain; charset="us-ascii"
----------
Eric Stork
e-mail address: estork@erols.com
--=====================_891137954==_--
---
---------------
* Origin: apana>>>>>fidonet [sawasdi.apana.org.au] (3:800/846.13)

SOURCE: echomail via exec-pc

Email questions or comments to sysop@ipingthereforeiam.com
All parts of this website painstakingly hand-crafted in the U.S.A.!
IPTIA BBS/MUD/Terminal/Game Server List, © 2025 IPTIA Consulting™.