home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / gledit28.zip / GLEDIT.DOC < prev    next >
Text File  |  1994-07-15  |  26KB  |  578 lines

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