home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR8 / GLEDIT26.ZIP / GLEDIT.DOC next >
Text File  |  1993-08-28  |  26KB  |  589 lines

  1.                                     /GLEDIT
  2.                               Global File Editor
  3.                                  USER'S GUIDE
  4.  
  5.                   Copyright 1990, 1993 by Gary C. Crider and
  6.                                Parity Solutions
  7.                                
  8.  
  9.  
  10. TABLE OF CONTENTS:
  11.  
  12.         What is GLEDIT? .................................. 1.0
  13.         The GLEDIT command line .......................... 2.0
  14.         Escape Sequences for Special Characters .......... 2.1
  15.         Operational Notes and Cautions ................... 3.0
  16.         Locating Data .................................... 4.0
  17.         Modifying Data ................................... 5.0
  18.         Printing or Saving the Output .................... 6.0
  19.         Return Codes ..................................... 7.0
  20.         Compatibility with Prior Releases ................ 8.0
  21.         Installation ..................................... Appendix A
  22.         Disclaimer ....................................... Appendix B
  23.         Support .......................................... Appendix C
  24.         Registration ..................................... Appendix D
  25.  
  26.  
  27. 1.0 What Is GLEDIT?
  28.  
  29.    GLEDIT lets you globally search for, and optionally replace, a string of 
  30. characters in all selected files a directory.  If you are familiar with GREP 
  31. from Borland International, you know the power of being able to search all 
  32. .BAT files in your BATCH directory when you move some applications to a new 
  33. disk volume.  You are able to tell immediately which batch files need to be 
  34. modified.
  35.  
  36.    GLEDIT takes it a step further in letting you also specify the string that
  37. is to replace the search string and does the update of the file for you.  It
  38. prompts you before changing each line that may require modification.
  39.  
  40.  
  41.  
  42. 2.0 The GLEDIT Command Line
  43.  
  44. Format: 
  45.    GLEDIT [path]filespec "searchstring" ["replacestring"] [switches]
  46.  
  47.    The "filespec" is the file name of the file that you want to search or 
  48. edit.  If the "filespec" is a wildcard specification, all matching files in 
  49. "path" will be searched/edited.  If "path" is not specified, the current 
  50. directory is used.  If a mapped network directory is used for the path, the
  51. full directory path should be specified, rather than just the drive letter.
  52. For example, use W:\UTIL\*.* rather than W:*.* if W: is mapped to the UTIL
  53. directory.  Do not use the actual network drive names in the path such as 
  54. APPL:\UTIL\*.*.
  55.  
  56.    The "searchstring" is the string of characters to look for in each 
  57. matching file.  It should be enclosed in quotes if it contains spaces, commas 
  58. or characters other than letters or numbers.
  59.  
  60.    The "replacestring" is the new string to be inserted in place of the
  61. "searchstring".  It does not have to be the same length as the "searchstring".  
  62. The new record length will be adjusted to accommodate the replacement.  It 
  63. should be enclosed in quotes if it contains spaces, <, >, or |.  If you
  64. specify "" as the "replacestring", then nothing is inserted in place of the
  65. "searchstring", in effect deleting it from the record.
  66.  
  67.    Either string may contain quotes by using the ~q escape sequence described  
  68. in the next section.   
  69.  
  70.    The replace string may not be exactly the same as a switch, unless 
  71. enclosed in quotes.  The switch characters may also be embedded within a 
  72. replace string.  
  73.  
  74.  
  75. Switches:
  76.  
  77.    /I indicates case-insensitive searching where the search argument and the
  78. target record will match if they contain the same letters regardless of
  79. upper or lower case.  /I has no effect on "replacestring".  The "replace-
  80. string" is inserted as entered in the command line.
  81.  
  82.    /N directs output to the standard output device (normally the display).
  83. GLEDIT normally writes to the screen with color highlighting of the matched
  84. string.  Output directed to the screen cannot be redirected to another
  85. device.  The standard output can be directed to another device such as
  86. a file or printer.  If you specify /N and do not redirect the output, it
  87. will appear on the screen without color highlighting.
  88.  
  89.    /S is ignored if "replacestring" was specified.  If not specified, the 
  90. scrolling text on the display will pause for a key to be hit between files 
  91. with matches for "searchstring".  If /S is specified, scrolling is continuous.
  92.  
  93.    /Y is used to automatically reply Y to the replace prompts when in
  94. edit (replace) mode.  Please see "Operational Notes and Cautions" before 
  95. using this parameter.  It is ignored in search  mode.
  96.  
  97.    /T (test mode) performs just exactly like /Y except that no changes are 
  98. actually made to any files.  You can test the results before changing it to
  99. /Y.  /T is ignored in search mode.
  100.  
  101.  
  102. 2.1 Escape Sequences for Special Characters
  103.  
  104.   Sometimes ASCII text files contain some special characters that are not
  105. normally considered text characters.  GLEDIT lets you search and replace
  106. using some of these characters by substituting escape sequences in the 
  107. search/replace strings fo these characters.  Please read the notes below
  108. concerning each escape sequence before using them.
  109.   
  110.   The following escape sequences are used within the searchstring and 
  111. replacestring to represent the presence of special characters that either 
  112. cannot be entered on the command line, or may cause problems if they are.
  113. The character following the tilde (~) must be lower case.
  114.  
  115.   ~b = Bell [BEL] (ASCII 7)
  116.   ~e = Escape (ASCII 27)
  117.   ~f = Form feed (ASCII 12)
  118.   ~p = Percent sign [%] (ASCII 37)
  119.   ~n = Line feed (ASCII 10)
  120.   ~q = Double quote ["] (ASCII 34)
  121.   ~r = Carraige return (ASCII 13)
  122.   ~t = Horizontal tab (ASCII 9)
  123.   ~~ = Tilde [~] (ASCII 126)
  124.  
  125.   NOTES-
  126.  
  127.   ~b - The BEL character causes a beep on the speaker when displayed, but
  128.        does not display as any character.  In order for you to see where it
  129.        is located in the line, the prompts will display the BEL character
  130.        as a heart.  It will not show up at all when /N is specified.
  131.  
  132.   ~e - The ESC character is used to indicate ANSI.SYS and printer escape
  133.        (control) sequences.  To prevent interference with the display,
  134.        the prompts will display the ESC character as a happy face.  It
  135.        will not show up at all when /N is specified.
  136.  
  137.   ~f - The form feed character causes the printer to eject a page.  It shows
  138.        up on the prompt line as circle over a cross, the female sign.  To
  139.        prevent page ejects when routed to a printer, it is omitted from the
  140.        prompt lines when /N is used.
  141.  
  142.   ~p - Using the ~p sequence in place of the percent sign (%) prevents DOS 
  143.        from trying to interpret %1-%9 and paired percent signs as command 
  144.        string and environment variables when GLEDIT is executed within a 
  145.        batch file.  DOS attempts this variable substitution regardless of the 
  146.        presence of quotes in the line.  If the variable is not found in the 
  147.        command line or environment, whatever it interprets as a variable 
  148.        vanishes.  This is ture even if there are spaces between paired 
  149.        percent signs.
  150.  
  151.   ~n - The line feed causes the printer or display to advance one line.
  152.        Removing or inserting a line feed will join or split a line of text.
  153.        When using ~n you are actually searching for or inserting carraige
  154.        return/line feed (CR/LF) pairs.  These CR/LF pairs are found at the 
  155.        end of each text file record.  See the note on ~r.
  156.  
  157.   ~q - Double quotes within the search/replace strings must be entered using 
  158.        the ~q escape sequence becuase otherwise DOS will misinterpret the 
  159.        command line.  The \q which was used in earlier releases is no longer 
  160.        supported.
  161.  
  162.   ~r - The carraige return character causes the printer or display cursor to
  163.        return to the start of the current line.  The Borland C++ text mode
  164.        input routines ignore carraige returns, and read in carraige return/
  165.        line feed pairs (CR/LF) as line feed characters.  Thus, a search for
  166.        a carraige return will always fail to find a match.  You may, however
  167.        insert carraige returns by putting them in the replace string.  See
  168.        the note on ~n.
  169.   
  170.   ~t - The horizontal tab character displays or prints a number of spaces
  171.        whenever it is sent to the display or printer.  Usually this defaults
  172.        to 8 spaces, but can be set to other values within many programs.  The
  173.        tab shows up in prompts as a diamond character.
  174.  
  175.   ~~ - You may search for or replace the tilde character by using two tildes 
  176.        (~~) to represent one.  If a single tilde is encountered that is not 
  177.        followed by one of the above lower case letters, it is treated the 
  178.        same as ~~.
  179.  
  180.   Some uses for special characters include joining lines by removing ~n,
  181. splitting lines by inserting ~n pair, replacing tab characters with the 
  182. desired number of spaces, removing form feeds from printer files, searching 
  183. for and replacing LaserJet escape sequences, etc.
  184.  
  185.   If your keyboard does not have a tilde, hold the ALT key down and press
  186. 126 on the keypad.
  187.  
  188.   Most international and graphic characters can be entered in the same 
  189. manner, by holding the ALT key and entering the decimal value of the ASCII
  190. code on the numeric keypad.  
  191.  
  192.  
  193.   PLEASE NOTE- Some of the special characters are removed from the records
  194. displayed on the screen due to the unwanted results they might cause when
  195. displayed or redirected to a printer.  These characters are ~b, ~e and ~f.
  196. The characters are present, however, in the records read from or written to
  197. the file.
  198.  
  199.  
  200. 3.0 Operational Notes and Cautions
  201.  
  202.    Please note that GLEDIT is intended for use in ASCII text files that
  203. use the standard CR/LF record delimiters.  If you use it on binary or non-
  204. standard files, the resulting file will probably be unusable.  If you use
  205. GLEDIT on indexed database records and substitute unequal length strings, you
  206. are almost sure to corrupt your database.  GLEDIT does not back up files 
  207. before replacing them, so be careful and be sure of what you are doing.  The
  208. safest approach is to backup the directory, possibly in an archive (.ZIP,
  209. .ARC, etc.) file before editing with GLEDIT.
  210.  
  211.   GLEDIT has two modes of operation, search and edit.  Whenever a replacement
  212. string is specified, edit mode is activated.  If no replacement string is 
  213. provided, search mode is invoked.  In search mode, no file writes whatsoever 
  214. take place, therefore no data is modified.  When edit mode is invoked, a work 
  215. file is written to the target directory.  As each record is read in, it is 
  216. also written to the work file, modified or not.  When GLEDIT reaches end of 
  217. file on the input file, it checks to see if you had elected to make any 
  218. modifications.  If so, it deletes the input file and renames the work file to 
  219. the name of the input file.  The point of relating all of this is that you 
  220. should not specify a replacement string if you are just looking for 
  221. occurrences of a string.  Edit mode has much higher overhead.
  222.  
  223.   Please be extremely cautious when using the /Y parameter.  This is for
  224. users who like to live on the edge and believe, "It's my data and I'll
  225. corrupt it if I want to."  A miskeyed command line or not thinking through
  226. what is going to be the result can cause file damage on a vast scale. If
  227. /Y is specified, the only way to stop it is with CTRL-BREAK.  Even this
  228. could cause a file to be damaged.  Specify BREAK=ON in your CONFIG.SYS
  229. file to make sure you can break out if things are going badly.  Use the
  230. /T switch to test the result before changing it to /Y.
  231.  
  232.   It is a good idea to use /N and redirect the output to a file or printer
  233. during execution of /Y or /T.  This gives a log of the results.  See Printing
  234. or Saving the Output.
  235.  
  236.   If at any time you wish to abort a search, press the ESC key.
  237.  
  238.  
  239. 4.0 Locating Data
  240.  
  241.    The primary purpose of GLEDIT is to let you find files that contain certain
  242. strings, generally because the strings need to be modified, but not always.
  243. If you just want to find what files contain a certain string, just enter
  244. the GLEDIT command without a replacement string.
  245.  
  246.    GLEDIT will begin going through the target directory finding each file that
  247. matches the filespec you provided in the command line.  It will search each
  248. of the matching files for the search string you provided.  When found, the
  249. file name will be displayed along with any records in the file containing the
  250. search string.  If you did not specify /N, the text will be light gray on a
  251. black background with the search string highlighted in light red text.  If you
  252. did not specify /S, the display scrolling will pause at the end of each file 
  253. with matching strings and wait for a key to be pressed before proceeding to 
  254. search the next file.
  255.  
  256.  
  257.  
  258. 5.0 Modifying Data
  259.  
  260.    Edit mode processing involves everything described under Locating Data 
  261. (except /S) plus you are prompted to reply Y or N depending on whether or
  262. not you want matching records updated as each is displayed.  GLEDIT also 
  263. displays the modified line as it will appear if you reply Y.  You can see
  264. the result before you accept it.
  265.  
  266.    If you specify "" as the replace string, any matches of the search string
  267. are deleted from the record.
  268.  
  269.  
  270.  
  271. 6.0 Printing or Saving the Output
  272.  
  273.    To print the output of a search, or an edit using /Y or /T, specify the /N,
  274. and /S if in search mode, parameters and redirect the output to the printer:
  275.  
  276.    GLEDIT *.TXT "MOM" /N /S >PRN
  277.  
  278. or log to a file:
  279.  
  280.    GLEDIT *.BAT "G:" "H:" /N /T >C:\GLEDIT.LOG
  281.  
  282.    You can use >> instead of > if you want the output appended to a log file
  283. instead of creating a new log each time.
  284.  
  285.    Do not use redirection when using edit mode (without /Y or /T) or without 
  286. the /S in search mode.  The resulting pauses will make it appear that GLEDIT 
  287. is hung, since you will not see the prompts.  If this happens, repeatedly 
  288. pressing N will allow GLEDIT to progress to completion.
  289.  
  290.  
  291.  
  292. 7.0 Return Codes
  293.  
  294.   The following DOS ERRORLEVEL return codes are returned from GLEDIT:    
  295.     
  296.     0   - One or more matches found.  Replaced or not replaced has no bearing.
  297.     1   - No matches found in any files searched.
  298.     2   - No files found matching the search file specification.
  299.     3   - Invalid path specified in serach file specification.
  300.     4   - Directory recursion error.  Please report to Parity Solutions.
  301.           Should never happen.
  302.     255 - User abort.  ESC key pressed.  Does not detect BREAK key.
  303.  
  304.  
  305.  
  306. 8.0 Compatibility with Prior Releases
  307.  
  308.   Versions prior to 2.5 used \q to indicate a quote within a search/replace
  309. string.  This is no longer supported.  The ~q escape sequence is used 
  310. instead.
  311.  
  312.   If you have edits set up in batch files or scripts, check them to make sure
  313. that the search and replace strings do not contain any of the allowed escape 
  314. sequences.  If they do, replace the tilde (~) with two tildes (~~).  This is
  315. necessary when going from a release prior to 2.5 to release 2.5 or later.  
  316. See the section, Escape Sequences for Special Characters.
  317.  
  318.  
  319. APPENDIX A
  320.  
  321. Installation
  322.  
  323.     GLEDIT is distributed in a ZIP file called GLEDIT.ZIP.  It contains the
  324. following files:
  325.  
  326.         GLEDIT.EXE         The executable file for GLEDIT.
  327.         GLEDIT.DOC         The documentation file.
  328.         GLEDIT.HST         History of changes to GLEDIT.
  329.         GLEDIT.Vnn         Description of changes to implement version nn,
  330.                            the current version. 
  331.  
  332.     For best results, unzip the file into a directory on your PATH.  If you
  333. don't use a directory in your path, you will have to designate the directory
  334. containing GLEDIT.EXE when executing the program.
  335.  
  336.     If you have a utility directory that is on your PATH, this is an excellent
  337. location for GLEDIT.  An example installation would be:
  338.  
  339.     C:
  340.     CD \UTIL
  341.     COPY [path]GLEDIT.ZIP
  342.     PKUNZIP GLEDIT
  343.     DEL GLEDIT.ZIP
  344.  
  345.     The PKUNZIP program is by PKWARE, Inc. and is available in many CompuServe
  346. forums under the file name of PKZ110.EXE or PK204E.ZIP.  Since you are reading 
  347. this doc file, you have obviously already managed to unzip the distribution 
  348. file.  If it is not currently in your path, simply copy all of the files to a 
  349. directory in your path.  Keep the GLEDIT.ZIP file anywhere you like, but give 
  350. plenty of copies, as is, to your friends.  If you register GLEDIT, you are not 
  351. licensed to give your serial number to anybody without first removing the 
  352. serialization from your copy.
  353.  
  354.  
  355.  
  356. APPENDIX B
  357.  
  358.  
  359. Disclaimer
  360.  
  361. BECAUSE OF THE DIVERSE NATURE OF COMPUTER EQUIPMENT AND EXPERTISE OF USERS,
  362. PARITY SOLUTIONS AND GARY C. CRIDER MAKE NO WARRANTY ON THE GLEDIT PROGRAM
  363. WHATSOEVER, EXPRESSED OR IMPLIED.  THE USER ASSUMES ALL RISK OF DAMAGE TO
  364. DATA OR EQUIPMENT RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OR MISUSE OF
  365. THIS PROGRAM PRODUCT.  THE USER MUST BE AWARE THAT USING GLEDIT TO MAKE
  366. ALTERATIONS TO PROGRAMS OR DATA CAN RENDER THAT PROGRAM OR DATA USELESS.
  367.  
  368. USERS ARE ADVISED TO TEST MODIFICATIONS MADE WITH GLEDIT THOROUGHLY ON FILES 
  369. FOR WHICH A BACKUP EXITS.  ANY LIABILITY OF THE AUTHOR OR PARITY SOLUTIONS IS 
  370. LIMITED TO REPLACEMENT OR REFUND OF THE REGISTRATION FEE.
  371.  
  372.  
  373.  
  374.  
  375. APPENDIX C
  376.  
  377.  
  378. Support
  379.  
  380.     I have tried to test the program to the fullest, but I am limited as to
  381. systems and configurations with which to test.  I have been programming for 18
  382. years and the one thing I know for sure is that bug free programs are very few
  383. and far between.  I can only promise to support the program to the best of my
  384. ability and provide fixes as expeditiously as possible.  GLEDIT has been used
  385. at my home and work site extensively for several years and has proven to be a
  386. reliable tool.
  387.  
  388.     Anyone can report problems and suggest changes.  Registered users get top
  389. priority in resolving their problems.  There are three ways you can report
  390. problems.  The preferred method is to contact me through CIS mail (not forum
  391. messages).  My CIS ID is 71760,3413.  You can also write me at:
  392.  
  393.    Gary C. Crider
  394.    Parity Solutions
  395.    1105 Burgess Court
  396.    Arlington, TX 76015
  397.  
  398.    On 10/31/93 we will move to:
  399.  
  400.    1903 Pavia Court
  401.    Arlington, TX 76006
  402.    
  403.     The last method is to phone (817) 467-7818.  Since I am the sole technical
  404. support and the line is also used for my network consulting business, it is
  405. often hard to get through to me.  Please call and leave a message between 7:30
  406. am and 5:30 pm Central time.
  407.  
  408.     No matter which method you use, please give a brief description of your
  409. problem, your registration serial number if you are registered, and your phone
  410. number.  If I need more information, I will contact you as soon as I can.
  411. When I have a solution, I will contact you however you prefer.
  412.  
  413.     I work full time, have a consulting business to run in my spare time and
  414. write programs instead of sleeping.  So please be a little patient with me.
  415.  
  416.     Program updates are available on CompuServe or can be requested from us 
  417. for a $5 shipping and handling charge.  Add $1 for international shipping 
  418. outside the North American continent.  A distribution disk of all Parity 
  419. Solutions products will be sent to you.  Specify disk size and format.  You
  420. may use the order form at the end of this document.
  421.  
  422.  
  423.  
  424. APPENDIX D
  425.  
  426.  
  427. Registration
  428.  
  429.  
  430.     I begin with an apology.  I hate programs that in any way inhibit func-
  431. tionality or performance for the shareware version.  But when it came down to
  432. feeding the family and paying the bills, I had a change of heart and inserted
  433. a pesky notice that pops up at the beginning and gets on your nerves.  I
  434. chose this approach above that of limited functionality.  The program's full
  435. capabilities are available for you to evaluate before you invest your hard-
  436. earned money.
  437.  
  438.     You may use GLEDIT unlicensed for 30 days, after which time you are 
  439. required to be registered.
  440.  
  441.     Registered users will receive a unique serial number and instructions on
  442. how to serialize the program.  Serialization can be re-applied to updated
  443. versions and in no way hinders your use of the program.  You can compress or
  444. decompress the program with no effect (LZEXE or PKLITE).  I use Fabrice
  445. Bellard's LZEXE program on GLEDIT.EXE before distribution.
  446.  
  447.     As a registered user, you will be able to update without re-registration
  448. or additional fees.  You will also be kept on my PRIVATE mailing list to
  449. receive additional information on other Parity Solutions products.  
  450.     
  451.     To register your copy, please use the order form below and send $16 ($45 
  452. per file server on LANs) check or money order (sorry, no credit cards yet) 
  453. to:
  454.  
  455.    Gary C. Crider
  456.    Parity Solutions
  457.    1105 Burgess Court
  458.    Arlington, TX 76015
  459.  
  460.    After 10/31/93 use:
  461.  
  462.    1903 Pavia Court
  463.    Arlington, TX 76006
  464.  
  465.     Please use the order form at the end of this document for your 
  466. convenience and ours.
  467.  
  468.     Purchase orders are acceptable from U.S. and Canadian companies and
  469. institutions for amounts of $45 or more.
  470.  
  471.     International orders outside the U.S., Canada and Mexico add $1 to the 
  472. total order for postage.
  473.  
  474.     Or, you can register online quickly and simply on CompuServe.  Simply
  475. GO SWREG and register ID #754.  Your registration will be added to your 
  476. Compuserve bill.  International exchange was never easier and you save the
  477. $1 international postage charge.
  478.  
  479.     If you send your CIS ID or register via SWREG, your registration will be 
  480. sent to you via CIS mail, along with instructions on how to serialize your 
  481. copy of GLEDIT.  This usually involves one day or less turnaround.
  482.     
  483.     Program diskettes are not normally shipped.  Normal distribution is via 
  484. CompuServe.  If you need a diskette, please see the instructions under Support 
  485. above, or use the order form below.  You will receive a serial number and 
  486. instructions for serializing your copy of the program.
  487.     
  488.     Each license gives you or your company a single-use permit for GLEDIT. It 
  489. is not restricted to a single machine as long as no two users can be simul-
  490. taneously using the program.  As Borland says, "treat it like a book."  As an 
  491. example, if you register GLEDIT for your home computer, but during the day you 
  492. use a portable or a computer at work,  you may keep GLEDIT on both machines as 
  493. long as no one is at home using it on your home computer.
  494.  
  495.     LAN licenses grant rights to all users of a file server.  If inter-
  496. networking, a license must exist for each file server that contains a copy
  497. of GLEDIT.EXE.  If two or more file servers exist on a single LAN strictly for
  498. mirroring data and fault-tolerance, these will be counted as a single file
  499. server for licensing purposes.  If in doubt, contact me.  We can work out
  500. an agreement.
  501.  
  502.     Site licensing is also available on a negotiated price basis.  I guarantee
  503. it will be an economical alternative to buying licenses for each user.
  504.  
  505.     If you are a registered user of GEDIT from Parity Solutions, you may use
  506. your GEDIT serial number to serialize GLEDIT.
  507.     
  508.     You may freely distribute the original GLEDIT.ZIP file in any way you see
  509. fit other than selling it.  Users' groups and shareware distribution services
  510. may charge a reasonable fee for the medium and duplication costs, not to 
  511. exceed six dollars.  Bulletin boards may not charge additional fees for 
  512. downloading this specific program, other than normal connect-time and/or 
  513. membership charges.
  514.  
  515.     You are NOT licensed to give anyone your serial number unless you first
  516. remove all serialization from your computer.  You may then no longer use that
  517. serial number.  Only Parity Solutions has the authority to issue serial
  518. numbers.
  519.  
  520.     Modification of GLEDIT.EXE in any manner is prohibited and unlawful.
  521.  
  522.     Licensees of Parity Soultions' GEDIT program may serialize GLEDIT by
  523. renaming GEDIT.SER to GLEDIT.SER.
  524.  
  525. ==============================================================================
  526.                 
  527.                           ORDER FORM FOR GLEDIT
  528.  
  529. Send checks payable to:
  530.  
  531.   Parity Solutions                 After 10/31/93, send to:
  532.   1105 Burgess Court               1903 Pavia Court
  533.   Arlington, TX 76015              Arlington, TX 76006
  534.  
  535.  
  536.  
  537. BILLING ADDRESS:                        SHIP TO (If different):
  538.  
  539. NAME:    _____________________________  NAME:      ___________________________
  540.       
  541. COMPANY: _____________________________  COMPANY: _____________________________
  542.  
  543. STREET:  _____________________________  STREET:  _____________________________
  544.  
  545.          _____________________________           _____________________________ 
  546.         
  547. CITY/ST: _____________________________  CITY/ST: _____________________________
  548.  
  549. ZIP/POSTAL CODE: _____________________  ZIP/POSTAL CODE: _____________________
  550.  
  551. COUNTRY: _____________________________  COUNTRY: _____________________________
  552.  
  553. PHONE:   _____________________________  PHONE:   _____________________________
  554.  
  555.  
  556. CompuServe ID: _______________________(optional)
  557.  
  558.  
  559.    NOTE: Parity Solutions sends a serial number for each registration and 
  560.          instructions for serializing your program.  A diskette containing
  561.          the latest releases of all Parity Solutions shareware products is
  562.          available for $5.00 U.S.  The current release of GLEDIT is avail- 
  563.          able for downloading on CompuServe in the IBMSYS forum.
  564.  
  565.  
  566.    QTY   DESCRIPTION                             PRICE EA.   TOTAL PRICE
  567.  
  568.    ___   GLEDIT license and registration           $16.00    ___________
  569.  
  570.    ___   GLEDIT Network license and registration    45.00    ___________
  571.  
  572.    ___   Parity Solutions shareware diskette         5.00    ___________
  573.  
  574.          International postage outside U.S.,         1.00    ___________
  575.          Canada and Mexico.
  576.  
  577.                              
  578.                                           Total Enclosed:    ___________
  579.  
  580.  
  581. Diskette size (if ordered): __ 5.25" 360k  __ 5.25" 1.2M  __ 3.5" 760k
  582.  
  583.  
  584. Thank you for doing business with Parity Solutions.  (817) 467-7818
  585.  
  586. Parity Solutions is a partnership of Gary C. Crider and Russell L. McCloud.  
  587. Federal tax identification number 75-2468376.
  588. ==============================================================================
  589.