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