home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 23 / bbd23.zip / UPDATE.TXT < prev    next >
Text File  |  1988-06-24  |  8KB  |  165 lines

  1. |D╔════════╗══════════════════════════════════════════════════════════════════════
  2. |D║ |5Update |D║══════════════════════════════════════════════════════════════════════
  3. |D╚════════╝══════════════════════════════════════════════════════════════════════
  4.  
  5.    This column contains updates, bug fixes, etc. regarding earlier issues.
  6.  
  7.  
  8. ^C^1States & Capitals
  9.  
  10.    We goofed: in the States & Capitals program on issue #20, we incorrectly gave 
  11. the capital of North Dakota as Fargo.  Actually, the correct answer is Bismarck.  
  12. We apologize to all North Dakotans for misplacing their capital.  It's been 
  13. fixed on newer editions of the issue, so recent back-issue purchasers should 
  14. have the right capital for this state.  (You can tell if your issue is the 
  15. updated version by the numbers at the bottom of the copyright screen when you 
  16. start up BIG BLUE DISK; if the code after "Ed" begins with a 1, it's the old 
  17. version with the wrong capital, while a 2 or later indicates the fixed version.)
  18.  
  19.    You can patch your copy as follows:  With issue 20, disk 1 in your drive, 
  20. type PASRUN BLUELINE from the DOS prompt.  When asked for a filename, select 
  21. QUIZ3.DAT.  Use the arrow keys to get to the line with FARGO, then press Ins 
  22. to get into overwrite mode.  Now, type BISMARCK.  Press F4 to save the file, and 
  23. F10 to quit.  You may wish to make a backup before you do this, so you don't 
  24. accidentally damage the original.
  25.  
  26.  
  27. ^C^1Print Utility
  28.  
  29.    In issue #21 of BIG BLUE DISK, we published a program called The Print 
  30. Utility, by Gary M. Simpson, Sr.  This is a program to format text for printout.  
  31. However, in the crush of issue deadlines, we somehow omitted mention of some 
  32. very powerful features of the program in our instructions.  Hence, we are now 
  33. presenting an update to the documentation, to help you make better use of the 
  34. program.  (If you don't have BIG BLUE DISK #21, it can be ordered from us for 
  35. $9.95, or less if you buy several other back issues at the same time.  Write us, 
  36. or call (800) 831-2694 toll-free, for more information or to place your order.) 
  37.  
  38.    One handy feature is that you can include the name of the file you are 
  39. printing on the DOS command line when you invoke Print Utility.  Just type (from 
  40. the DOS prompt) PRTUTIL filename (e.g. PRTUTIL LETTER.TXT), and the indicated 
  41. filename will be used as the file to print.  This avoids the need to use the 
  42. "File" menu option to set the name.
  43.  
  44.    The major feature that we failed to mention was the extensive set of embedded 
  45. formatting commands you can use within your text.  These commands are active 
  46. only if the "Reformat" menu item is set to On; otherwise, "what you type is what 
  47. you get."  They are as follows: 
  48.  
  49.    If a "@" symbol is placed on the first character position of a line, the line 
  50. is centered.  The text to be centered must be enclosed in parentheses.
  51.  
  52. Examples:
  53. @(This text will be centered.)
  54. @        (So will this.)
  55.  
  56.    Lines beginning with "#" will be ignored, and a blank line will be printed.
  57.  
  58.    Lines beginning with ":" will be left "as is" without justification or 
  59. formatting.
  60.  
  61.    The end of paragraphs should be marked with the "^^" symbol.  If this symbol 
  62. is missing, the text will not be properly formatted.
  63.  
  64.    The following commands, enclosed in parentheses, must be placed on lines by 
  65. themselves:
  66.  
  67.    "(PAGE)" forces a new page regardless of where on a page the current text is. 
  68.  
  69.    "(PAUSE)" causes the printer to stop temporarily at that point, until the 
  70. ENTER key is pressed.  Use this when you need to do something manually at a 
  71. given point, like changing the print head on a daisy wheel printer. 
  72.  
  73.    "(FORMAT ON)" and "(FORMAT OFF)" control formatting.  After a "(FORMAT OFF)" 
  74. is encountered, no justification or other formatting is done until formatting is 
  75. reinstated with "(FORMAT ON)".  However, if a left margin has been set by a 
  76. previous command, it will continue to be used. 
  77.  
  78.    "(SPACE X)", where X is a number, sets the line spacing.  For example, 1 
  79. represents single-spaced, and 2 represents double-spaced.
  80.  
  81.    "(FORMAT PAGE P MARGIN M)" sets the page width and margin size.  P and M are 
  82. numbers; P represents the actual physical page width, while M is the number of 
  83. characters to use as a margin.  This supersedes the values for these parameters 
  84. which were selected from the Print Utility menu, and allows them to change over 
  85. the course of the document.
  86.  
  87.    "(CENTER W)", with W being the width of the block to be centered, causes the 
  88. text that follows to be centered.  This is done by setting the margins so that 
  89. only W characters, in the center of the page, are used, and justifying all 
  90. subsequent text accordingly.  This continues until superseded by a "(FORMAT PAGE 
  91. P MARGIN M)" command to restore normal margins.
  92.  
  93.    Here's a brief text containing examples.  This is how the "source" text 
  94. looked before it was sent to Print Utility:
  95.  
  96. ^1────────────────────────────────────────────────────────────────────────────────
  97. @                            (Example 1)
  98. @ (This line will be centered.)
  99. @(So will this one.)
  100. # This line will be ignored; only a blank line will be printed here.
  101. :These lines will be printed as is,
  102. :      with no reformatting.
  103. :
  104. (SPACE 2)
  105. (FORMAT PAGE 75 MARGIN 10)
  106.       These lines will be formatted and justified.
  107. Notice the line spacing has been set to 2.
  108. The end of the paragraph is marked with a "^^"
  109. symbol, like this.^^
  110. (SPACE 1)
  111. (CENTER 40)
  112.        This block of text will be centered, until another formatting command is 
  113. found.  Since this block is formatted, the end of the paragraph must be marked.^^
  114.  
  115. (FORMAT OFF)
  116.        These lines won't be formatted, but the margin
  117. is still as it was set by the CENTER command.
  118. No end-of-paragraph is needed here.
  119.  
  120. (FORMAT ON)
  121. (FORMAT PAGE 75 MARGIN 10)
  122.        Now, formatting is back on, with the margins set back to normal, 
  123. superseding the leftover values from CENTER.
  124. (PAUSE)
  125.        The printer just paused.^^
  126.  
  127.        It's time for a new page.^^
  128. (PAGE)
  129. ^1────────────────────────────────────────────────────────────────────────────────
  130.  
  131. Now, let's see how it prints out:
  132.  
  133. ^1────────────────────────────────────────────────────────────────────────────────
  134.                                     Example 1
  135.                            This line will be centered.
  136.                                 So will this one.
  137.  
  138. These lines will be printed as is,
  139.       with no reformatting.
  140.  
  141.       These lines will be formatted  and  justified. Notice  the  line 
  142.  
  143. spacing has been set to 2. The end of the paragraph is marked  with  a 
  144.  
  145. "^^" symbol, like this.
  146.  
  147.                    This   block of text  will  be  centered, 
  148.                    until  another  formatting   command   is 
  149.                    found.  Since  this  block  is formatted, 
  150.                    the end of the paragraph must  be marked.
  151.  
  152.                           These lines won't be formatted, but the margin
  153.                    is still as it was set by the CENTER command.
  154.                    No end-of-paragraph is needed here.
  155.  
  156.        Now formatting is back on, with the margins set back to normal,
  157. superseding the leftover values from CENTER.
  158.        The printer just paused.
  159.        It's time for a new page.
  160. ^1────────────────────────────────────────────────────────────────────────────────
  161.  
  162.    We hope this helps you make better use of this program, and we apologize to 
  163. our readers and the program author for failing to adequately document the 
  164. program in the initial release.
  165.