home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / WP / WP052.ZIP / BWARE.DOC < prev    next >
Text File  |  1991-02-20  |  31KB  |  693 lines

  1.  
  2. B-Dir, B-Type, B-Look, B-Font, B-Apply
  3. Part of the B-Ware family
  4. Copyright Hexagon Products      February 1990
  5.  
  6. B-Ware Table of Contents
  7.  
  8. Page    Subject
  9. 2     Introduction
  10. 3     B-Dir
  11. 4     B-Dir Options
  12. 6     Common B-Dir Sorts
  13. 6     B-Type
  14. 8     B-Type Options
  15. 9     B-Look
  16. 11    B-Look Options
  17. 12    B-Font
  18. 13    Quick Start
  19. 14    Running B-Font
  20. 16    B-Apply
  21. 16    Importing Fonts
  22. 18    B-Pop
  23. 18    Introduction
  24. 18    Quick Start
  25. 20    Technical Specifications
  26. 23    A Word about TesSeRact(TM)
  27. 24    A Comparison of B-Pops
  28. 25    B-Ware Products
  29. 26    Price List
  30. 27    Registration Form
  31.  
  32. Introduction
  33. ============
  34. B-Ware is a family of software products that bring large character
  35. displays to DOS.  Some of the programs, such as B-Edit and B-Pop, are
  36. shareware; others, including B-Dir, B-Type, B-Look, are free.  They
  37. were written as samples of B-Ware or as premiums for shareware
  38. registrations.  This document tells how to use the free programs.
  39.  
  40. All B-Ware programs can run in text mode using characters that are 8
  41. columns wide and 4 rows deep.  A normal text display of 25 rows of 80
  42. characters holds 6 rows of 10 characters of this large font.
  43.  
  44. On the original monochrome display, which does not support graphics,
  45. this is your only option.  However, on video hardware which can 
  46. display graphics, such as CGA or Hercules monochrome, you can switch
  47. among several character sizes at the touch of a key.
  48.  
  49. To provide different character sizes, B-Ware programs contain several
  50. character maps or fonts.  If you find the B-Ware characters hard to read,
  51. you can use the B-Font program to change the way any character looks.  When
  52. you have modified the characters to your liking, you can install them
  53. in any B-Ware program with B-Apply.
  54.  
  55. Other B-Ware programs include B-Type and B-Dir, which are substitutes for
  56. the DOS TYPE and DIR commands; B-Look, which is a text file browser, and
  57. B-Pop, which is a memory-resident magnifying glass.  B-123, a large character
  58. interface to Lotus(R) 1-2-3(R), will be available in March, 1990.
  59.  
  60. B-Dir
  61. =====
  62. B-Dir is a free sample of B-Ware, a collection of large character utility
  63. programs.  B-Dir works like DOS's DIR command with the following enhancements:
  64.  
  65.     * large character output;
  66.     * automatic pause at end of page;
  67.     * allows sorted directory listing;
  68.     * allows display of selected fields.
  69.  
  70.  
  71. The DOS DIR command displays five fields for each file entry
  72. like this:
  73.  
  74.     BLOOK   DOC 17348   8-28-89     4:14p
  75.     BTYPE   EXE 12304   8-28-89     1:15p
  76.     BDIR    EXE 8095    8-28-89     1:16p
  77.  
  78. The five fields are the Name, Extension, Size, Date, and Time. If you
  79. enter just the BDIR command, you get a list of the Name and Extension
  80. of every file on the current disk in the current directory.  To save
  81. space, the Size, Date, and Time are omitted unless you specificallly 
  82. ask for them.  You change these defaults by entering an option or
  83. argument following the BDIR command on the command line.
  84.  
  85. If you want to list files in a different directory or on a different disk,
  86. or if you want to list only some of the files in the current directory, you
  87. can enter a file name pattern.  Only files that match this pattern will
  88. be listed.  For example, if you want to see only the EXE files in the
  89. current directory, you can use the command BDIR *.EXE.  Other examples:
  90.  
  91.        BDIR A:
  92.        BDIR C:\DATABASE\*.DB1
  93.        BDIR *.WK?
  94.  
  95. You can use the wild characters * and ? exactly as in DOS.  The * matches
  96. any number of characters in that postion, and the ? matches any single
  97. character in that position.  The last example, *.WK? would match
  98. JANUARY.WKS and A.WK1.
  99.  
  100. B-Dir Options
  101. =============
  102. You can also list the files in ascending or descending order of any of
  103. the fields by adding an argument starting with a + or - followed by the
  104. initial character of the field name (N for Name, E for Extenstion,
  105. S for Size, T for Time, D for Date).  
  106.  
  107. For example to sort all files by Extension, use: BDIR +E.  There will
  108. be ties, such as when there are a number of files with the EXE extension.
  109. To resolve these ties, you can enter another argument.  For example:
  110. BDIR +E +N sorts first in order of Extension, then resolves ties by
  111. sorting them in order of the Name.  You can specify multiple arguments
  112. in several formats. The following are all equivalent:
  113.  
  114.                    BDIR +E +N
  115.                    BDIR +e +n
  116.                    BDIR +E+N
  117.                    BDIR +EN
  118.  
  119. The order, however, is important.  BDIR +N +E is not the same as
  120. BDIR +E +N.
  121.  
  122. If you use a - to precede the field initial, the files will be sorted
  123. in descending order.  For example BDIR -S sorts files in descending 
  124. order by size.  The list will show the largest files first, and
  125. the smallest files last.  Using BDIR -D-T will sort by date and time
  126. with the newest files first, and the oldest files last.
  127.  
  128. By default, only the Name and Extension are displayed.  To see the other
  129. fields, use the initial of the field preceded by a /.  To see all fields,
  130. use BDIR /SDT.  The /, +, and - can all be mixed together on the command
  131. line.  The following are equivalent:
  132.  
  133.                    BDIR -DT/E
  134.                    BDIR -D/E-T
  135.                    BDIR -d -t /e
  136.  
  137. It might help you to remember that the three meaningful characters in
  138. B-Dir arguments, +, -, and /,  are also arithmetic signs.  If you forget
  139. the abbreviations or characters that must precede them, you can get a
  140. quick list by entering BDIR ?.
  141.  
  142. You can combine a file pattern with the sorting and displaying commands,
  143. such as:  BDIR *.EXE +DT /S   This command will list all files with an
  144. extension of EXE, sorted by date and time.  The order in which you specify
  145. the arguments is unimportant, so BDIR *.EXE +DT/S is the same as 
  146. BDIR +D *.EXE +T/S.  For each file, the file Name, Extension, and Size
  147. will be displayed.       
  148.  
  149. If you find that you always want to use the same arguments each time you
  150. use B-Dir, put the BDIR command in a BAT file with the arguments you prefer.
  151.  
  152. Common B-Dir Sorts
  153. ==================
  154. * You created a file yesterday afternoon, but forget the name of it.  Use
  155. BDIR -DT/DT to sort the files by date and time.  Because of the -, the
  156. files will be listed with the most recent first.
  157.  
  158. * Your disk fills up and you want to delete some files to regain space.
  159. Use BDIR -S/S to sort the files by size.  The largest files, that will
  160. gain you the most room if they can be deleted, will be listed first.
  161.  
  162. * As part of general housekeeping, use BDIR +EN to list files grouped 
  163. together by extension.  Any files in your mail directory with extensions
  164. other than .LET will show up easily.
  165.  
  166. On video hardware such as CGA or Hercules monochrome, which can display
  167. graphics, B-Dir supports a variety of character sizes.  To change from one
  168. to another, press the F2 key while B-Dir is running.  On graphics screens,
  169. you will be able to cycle among a half dozen video modes.  On the original
  170. monochrome display, which does not support graphics, you will only get the
  171. large text block display.
  172.  
  173. If you are in the middle of a multiscreen directory list, you can cancel
  174. B-Dir at any time by pressing the ESCape key.
  175.  
  176. B-Type
  177. ======
  178. B-Type is a free sample of B-Ware.  It works like DOS's TYPE command to
  179. display ASCII text files, but B-Type uses large character output.  Since the
  180. file is displayed top to bottom, and does not have to be in memory all at
  181. once, B-Type has no limit on the size of files it can display.
  182.  
  183. Only ASCII text files can be displayed.  This means no EXE files or WK1
  184. files, etc.  You give the name of the file you want displayed on the
  185. command line.  For example, you can display a document file with
  186. the command:
  187.  
  188.                 BTYPE BTYPE.DOC
  189.  
  190. On video hardware such as CGA or Hercules monochrome, which can display
  191. graphics, B-Type supports a variety of character sizes.  To change from one
  192. to another, press the F2 key while B-Type is running.  On graphics screens,
  193. you will be able to cycle among a half dozen video modes.  On the original
  194. monochrome display, which does not support graphics, you will only get the
  195. large text block display.
  196.  
  197. B-Type displays each record in its entirety before moving on to the next
  198. record.  This means that lines longer than the width of the display are
  199. wrapped to the next line.  The start of each line is marked off by a triangle
  200. on the screen to show it differently from continuation lines.  This differs
  201. from B-Look which allocates one line to each record.  The top line of each
  202. screen shows the row and column of the text displayed in the upper left corner.
  203.  
  204. When B-Type is running, four keys have special meaning.  Press the ESCape key
  205. at any time to cancel B-Type before the file listing is complete.  Press the
  206. F1 key at any time to display a help screen.  Press the F2 key at any time
  207. to cycle to another size of display character.  The F3 key starts automatic
  208. scrolling.
  209.  
  210. B-Type pauses at the end of each screen of data until you press key without
  211. a special meaning.  However, if you press the F3 key, B-Type will pause at
  212. the end of each screen for a given time.  The default is 1.5 seconds, but
  213. you can change this with the -A option. 
  214.  
  215. B-Type Options
  216. ==============
  217. Arguments can be used to override some of the defaults used by the
  218. program.  Specify arguments on the DOS command line along with the
  219. file name.  For example,  BTYPE -A1500 BTYPE.DOC.  If you find that
  220. you always want to use the same argument each time you use B-Type, you
  221. can put the B-Type command in a BAT file with the arguments you prefer.
  222.  
  223. -An
  224. set time between automatic page downs when F7 key is pressed.  N is
  225. number of 1/1000ths seconds.  For example: -A1500 means page down every
  226. 1.5 seconds.
  227.  
  228. -Tn
  229. set the number of characters used for a tab character. The default is 8.               
  230.  
  231. -Vn
  232. set initial video mode.  -V0 is the large text block mode.  -V1 is the
  233. mode you would get by pressing F2 one time after the large text block mode.
  234.  
  235. B-Look
  236. ======
  237. B-Look is a free sample of B-Ware.  It reads a text file into memory and
  238. displays it using large characters.  You can use the arrow keys to display
  239. any part of the file in any order.  This differs from B-Type, where once you
  240. pass some data in the file, you can't go back and look at it again unless
  241. you start all over.  Files are limited to what can fit in memory.  In a 
  242. 256K machine B-Look should easily be able to process a 100K file. 
  243.  
  244. Only ASCII text files can be displayed.  This means no EXE files or WK1
  245. files, etc.  You give the name of the file you want displayed on the
  246. command line.  For example, you can display a document file with
  247. the command: BLOOK BLOOK.DOC
  248.  
  249. On video hardware such as CGA or Hercules monochrome, which can display
  250. graphics, B-Look supports a variety of character sizes.  To change from one
  251. to another, press the F2 key while B-Look is running.  On graphics screens,
  252. you will be able to cycle among a half dozen video modes.  On the original
  253. monochrome display, which does not support graphics, you will only get the
  254. large text block display.
  255.  
  256. When you begin, B-Look displays the first characters in each of the first
  257. records of the file.  Long lines are not wrapped.  To see characters of
  258. lines that are wider than the screen, you must use the arrow keys to move
  259. the display over to the right.  This differs from B-Type which always wraps
  260. long lines.  The top line of each screen shows the row and column of the
  261. text displayed in the upper left corner.
  262.  
  263. At any time during B-Look, you can press the F1 key to get help.  When you
  264. are done with B-Look, press the ESCape key to exit B-Look and return to DOS. 
  265.  
  266. Scroll 1 Character or 1 Page
  267. ============================
  268. You can use any of the four arrow keys to move the B-Look display by a
  269. single column or row.  You can use PgDn or PgUp to move the B-Look display
  270. up or down by a page.  A page consists of a screenful of data.  In the
  271. large block mode, this is 5 lines or 10 columns.  Use the F3 key or the
  272. Shift TAB key to move a page to the left.  Similarly, use the F4 key or
  273. the TAB key to move a page to the right.
  274.  
  275. Scroll to the Edge
  276. ==================
  277. Wherever you are in your file, HOME takes you to the top row and leftmost
  278. column.  The F5 key moves to the left edge of the file, and F6 moves to the
  279. right edge.  The END key takes you to the last row of your file, or to the
  280. bottom edge.
  281.  
  282. Automatic Scroll Down
  283. =====================
  284. The F7 key provides a way to scroll automatically.  If you press the
  285. F7 key, B-Look will act as if you press the PgDn key once every 1.5 seconds.
  286. To stop the automatic scroll, just press any key.  If you want to change
  287. the interval between automatic PgDn keys, you must use the -A argument
  288. to B-Look.  For example, BLOOK -A2000 DOCFILE will set a 2 second delay.
  289.  
  290. Function
  291.    Key               Meaning
  292. =============================================
  293.     F1 Help       Show help screen
  294.     F2 Zoom       Change character size
  295.     F3 Left Page  Move one page to the left
  296.     F4 Right Page Move one page to the right
  297.     F5 Left Edge  Move to first column
  298.     F6 Right Edge Move to last column
  299.     F7 Auto ScrollRepeated page down
  300.  
  301. B-Look Options
  302. ==============
  303. Arguments can be used to override some of the defaults used by the
  304. program.  Specify arguments on the DOS command line along with the
  305. file name.  For example,  BLOOK -A1500 BLOOK.DOC.  If you find that
  306. you always use the same argument each time you use B-Look, you can
  307. put the B-Look command in a BAT file with the arguments you prefer.
  308.  
  309. -An
  310. set time between automatic page downs when F7 key is
  311. pressed.  N is number of 1/1000ths seconds.  For example:
  312. -A1500 means page down every 1.5 seconds.
  313.  
  314. -Vn
  315. set initial video mode.  -V0 is the large text block mode.
  316. -V1 is the mode you would get by pressing F2 one time after
  317. the large text block mode.
  318.  
  319. B-Font
  320. ======
  321. B-Font is a font editor that lets you customize the character shapes
  322. used by any B-Ware program, including B-Edit, B-Pop, B-123, B-Type,
  323. B-Dir, B-Look, and even B-Font itself.  Use B-Font to create a new
  324. font that is easier to read for you, and then use B-Apply to install
  325. the new font in any of the B-Ware programs.  
  326.  
  327. Currently, three fonts are used in B-Ware products.  These fonts are
  328. known by the number of dots used to make up each character.  The more
  329. dots the finer the resolution.  The three fonts are 8-bit, 12-bit, and
  330. 16-bit.  Not all products use all fonts.
  331.  
  332. BPOP8 for example, contains only the 8-bit font, in an attempt to keep
  333. it small.  When you have modified a font to your liking with B-Font,
  334. you can install it only on B-Ware products that use that size font. 
  335. If you try to do otherwise, the B-Apply program will give you the error
  336. message: EXE file does not contain font.
  337.  
  338. On a CGA, the 16-bit font is used in graphics mode which provides either
  339. 640 or 320 bits per line.  In 320 mode, the 16-bit font yields 320/16 or
  340. 20 characters per line.  In 640 mode, the 16-bit font yields 40 characters
  341. per line.  The 12-bit font similarly is used to provide 320/12 or 26 and
  342. 640/12 or 53 characters per line.  If you use B-Edit in 40 character
  343. per line mode, you should modify the 16-bit font.
  344.  
  345. This document uses an 8-bit font for examples, but everything documented
  346. herein also applies to the 12-bit and 16-bit fonts used by some B-Ware
  347. programs.
  348.  
  349. Quick Start
  350. ===========
  351. B-Font makes no backups, so you should run it on a copy until you are sure
  352. of your work.  Before you do a lot of work, make sure you are working on 
  353. the appropriate font for your level of magnification.  Run B-Font but 
  354. change only one or two characters.  Save the new font file, and apply it
  355. to a B-Ware program.  Then run the program and see that you have changed
  356. the magnification level you are interested in.
  357.  
  358. To run B-Font at the DOS command line, give it the name of the font you
  359. want to modify, such as:
  360.  
  361.                         BFONT THICK.8
  362.  
  363. Edit characters one at a time.  Change to another character by pressing
  364. its key.  Within a character, move to the cell you want to change with
  365. the arrow keys.  Press F1 to toggle the cell.  Save your work at any
  366. time by pressing the F9 key.  Use the F10 key to exit B-Font.  If you 
  367. prefer to use a mouse, just move the mouse cursor to any cell; toggle it
  368. by clicking any mouse button.
  369.  
  370. When you are done editing the font, you can install it into any current
  371. B-Ware program.  For example, to install the THICK.8 font to B-Type, enter
  372. the following command:
  373.                     
  374.                         BAPPLY THICK.8 BTYPE.EXE        
  375.             
  376. Running B-Font
  377. ==============
  378. B-Ware programs contain one or more patterns for all 256 possible
  379. characters, called a font.  The document uses an 8-bit font, but
  380. everything said also applies to the 12-bit and 16-bit fonts used
  381. by some B-Ware programs.
  382.  
  383. With an 8-bit font, each character is drawn in an eight by eight square
  384. grid.  The individual cells or pixels of the square are turned on or off
  385. so the resulting picture looks like the original character.  For example,
  386. the letter 'A' entry looks like this:
  387.  
  388.  
  389.  ..XX....
  390.  .XXXX...
  391.  XX..XX..
  392.  XX..XX..
  393.  XXXXXX..
  394.  XX..XX..
  395.  XX..XX..
  396.  ........ 
  397.  
  398. where the dots are 0's and the X's are 1's.  The inter-character spacing
  399. is provided for in the font itself.  Thus, the A has an empty row along
  400. the bottom and two empty columns along the right hand side. 
  401.  
  402. B-Font lets you modify the shape of any character used in any B-Ware program.
  403. You might choose to modify the letters to exagerate the differences between
  404. an H, M, and W, for example.
  405.  
  406. An 8x8 font is a bit too small to produce fine looking characters, but
  407. it is large enough to provide some options.  If you find it difficult to
  408. distinguish between an upper case M and an upper case W, you might choose
  409. to modify the letters to exaggerate the differences.  These letters don't
  410. have to look good to anyone but you.  For example, here are three versions
  411. of the letter A:
  412.  
  413.  ..██....   ..██....  ..██....
  414.  .█..█...   .████...  .████...
  415.  █....█..   ██..██..  ██████..
  416.  █....█..   ██..██..  ██████..
  417.  ██████..   ██████..  ██████..
  418.  █....█..   ██..██..  ██..██..
  419.  █....█..   ██..██..  ██..██..
  420.  ........   ........  ........
  421.  
  422.  Thin       Thick     Solid
  423.  
  424.  
  425. Designing fonts is an art requiring much skill and a more complex program
  426. than B-Font.  But if you don't know art, but know what you like, B-Font
  427. will work fine for you.  To get you started, you can use the fonts B-Ware
  428. uses currently.  These are called THIN.8, THICK.8, FONT.12, and FONT.16.
  429. Font editing is an art which takes skill and sophisticated tools which 
  430. are beyond the scope of this program.  This program is simply to make
  431. some characters more readable.
  432.  
  433. Run B-Font at the DOS command line with the name of the font file you
  434. want to edit, such as FONT.8 or FONT.12.  B-Font runs in text mode on
  435. color or monochrome displays.  You edit characters one at a time.  Press
  436. any key to change the current character being edited.  Move the cursor
  437. to any square in the matrix and press F1 to toggle the square from on 
  438. to off or off to on.  If you want to save the changes, press the F9 key.
  439. Press the F10 key to quit.  Back up your files first.  B-Font has mouse
  440. support.
  441.  
  442. B-Font uses text mode displays, so it will function on any video
  443. hardware, including CGA, Hercules, and even the original monochrome.
  444.  
  445. BAPPLY
  446. ======
  447. When you have finished creating a new font, you must install it in any
  448. B-Ware program you want to use it.  To do this, run B-Apply.  On the 
  449. DOS command line, give it the name of the font file and the name of the
  450. B-Ware program file.  For example, to replace the existing 8-bit font with
  451. one called THIN.NEW for BLOOK, enter the following command:
  452.  
  453.                 BAPPLY THIN.NEW BLOOK.EXE
  454.  
  455. B-Apply will read BLOOK.EXE as a binary file, locate the position of
  456. the internal font, and replace it with the data from THIN.NEW.  From then
  457. on, whenever you run BLOOK, the display will be in the new font.
  458.  
  459. You will get an error message if B-Apply can't find an internal font in 
  460. the program file, or if the new font isn't in the proper format.  In this
  461. case, you have most likely given B-Apply the wrong file names.
  462.  
  463. Importing Fonts
  464. ===============
  465. Fonts in the right format from other packages can be used directly in 
  466. B-Apply, or after modification by B-Font.  For example the fonts with
  467. the extension .F8 from Personics' Ultravision package can be used
  468. directly as an 8-bit font.  Any font used with Kim Kokkonen's BigEd
  469. can be used for a 12-bit font.  In fact, the original 12-bit font used
  470. in B-Ware is provided courtesy of Kim Kokkonen of TurboPower Software.
  471. He developed it for use in BigEd, a large character word processor. 
  472.  
  473. BPOP - A TSR Magnifying Glass
  474. =============================
  475. Introduction
  476. ============
  477. BPOP brings large-character screen displays to off the shelf software.
  478. The fully functional BPOP is a shareware program for $27.  However, included
  479. on the distribution diskette is a free version of BPOP that was written
  480. as a premium for registering BEDIT.  The differences are described later.
  481.  
  482. BPOP is a TSR.  You load it at the DOS command line, and it Terminates,
  483. but Stays Resident (TSR).  After that, it lurks in the background, waiting
  484. to be popped up when you press a certain combination of keys (hot keys).
  485. When you call up BPOP, it reads whatever is currently displayed on your
  486. screen, and redisplays it using large block characters.  Use the arrow
  487. keys to scroll around to other parts of the display.  When done, press
  488. any other key to return you to where you left off.  BPOP uses 
  489. TesSeRact(TM) to make it work with other TSRs.
  490.  
  491. Quick Start
  492. ===========
  493. You run BPOP by entering the BPOP command at the DOS prompt.  When BPOP
  494. is loaded, it displays a short message, and then returns control to DOS.
  495. It looks as if BPOP has terminated, but in fact, it is still resident
  496. in your computer's memory.  If you had done a DOS CHKDSK immediately before
  497. and after running BPOP, you would have noticed that the memory available
  498. in your machine has shrunk by about 30K.  This is memory that BPOP is
  499. residing in.
  500.  
  501. You can now enter any DOS command or program.  For example, enter the DOS
  502. DIR command to get a listing of your files as usual.  Now, hold down the
  503. Left Shift key and the ALT key and press the letter A all at the same time.
  504. If everything is correct, BPOP will read the DIR display off your screen,
  505. and replace it with part of the screen in large block characters.
  506.  
  507. BPOP is now active, and remains in control until you are done.  You can
  508. see another portion of the display by pressing any of the arrow
  509. keys, including the 4 single arrow keys, and HOME, END, PGDN, or PGUP. 
  510. Also, the Tab key is Page Right, while Shift Tab is Page Left.  These
  511. keys cause BPOP to scroll over the underlying data, displaying a
  512. different portion each time.  The top line of the BPOP display
  513. always shows the row and column of the underlying data that is currently
  514. displayed.
  515.  
  516. While BPOP is active, two keys have special meaning.  If you press an R,
  517. not only will BPOP release control of the screen, but it will tell DOS
  518. that it wants to go away completely.  After this, you won't be able
  519. to call BPOP with the hot keys again until you reload it.  If you haven't
  520. loaded any other programs on top of BPOP, the memory BPOP was using will
  521. be returned for other use.
  522.  
  523. The other key that has special meaning when BPOP is in control is the H key.
  524. If you press the H key, you will get a short help screen.  If you press any
  525. key that has no meaning to BPOP, such as the Enter key, BPOP will restore
  526. the display of the underlying screen and become dormant, waiting for the
  527. next time you press BPOP's hot keys.
  528.  
  529. Technical Specifications
  530. ========================
  531. BPOP is a TSR written according to the TesSeRact(TM) specifications.  It
  532. should work on any IBM compatible PC running under DOS 2.2 or later.  It
  533. will run on any monochrome or color screen when they are in text mode. 
  534. BPOP Simple takes up about 30K when resident.  It will run correctly on
  535. screens in greater than 25 line mode, but BPOP Simple will not take
  536. advantage of them.
  537.  
  538. BPOP will not pop up over a graphics mode screen, or when DOS is in the
  539. middle of executing a task.  If you try to invoke BPOP at these times,
  540. BPOP will just produce a cascading series of beeps instead of popping up.
  541.  
  542. Moving Around the BPOP Display
  543. ==============================
  544. BPOP can only display a portion of the underlying data that was on the 
  545. screen when BPOP was called up.  Each underlying character which occupied
  546. one column and one row will be enlarged by BPOP to take up 8 columns and
  547. 4 rows.  The underlying data can only be fully displayed by BPOP if you
  548. look at 8 pages across and 4 pages down.  Since each BPOP screen covers
  549. only about 1/32 of the underlying data it is important to be able to move
  550. the BPOP display to other portions of the data.
  551.  
  552. The simplest way to do this is by using the arrow keys.  The four arrow 
  553. keys cause BPOP to move one character in the given direction.  UP and 
  554. DOWN move one row, while LEFT and RIGHT move one column.  These arrow
  555. keys are useful for fine adjustments.  If you see most of what you are
  556. looking for on the current BPOP display, you can use the arrow keys to 
  557. see what is just off the edge of the BPOP display.
  558.  
  559. If you get to the edge of the underlying data, the arrow keys cause BPOP
  560. to wrap the display.  For example, if you are displaying the top row of
  561. the underlying data, and you press the UP arrow, since BPOP can't display
  562. any further up, it will wrap down to the last row of the previous page of
  563. columns.
  564.  
  565. This is analogous to how you read.  If you are at the rightmost edge and
  566. you press the RIGHT arrow, BPOP will go down a page and back over to the 
  567. left margin.  Whenever BPOP wraps like this, it will issue a short low
  568. beep to alert you to the situation.  The top line of the display can
  569. always be consulted to determine exactly what portion of the underlying
  570. display is being shown at any given time.
  571.  
  572. There are also paging keys which will change the display a page at a time.
  573. A page is defined as what can be shown on the BPOP screen at once.  For
  574. example, with an 80 by 25 display, a BPOP page consists of 10 columns of
  575. 5 rows.  If you press the PgUp key, BPOP will display the data that is
  576. 5 rows above what you are looking at.  Again, if the top row is already
  577. on the display, BPOP will wrap to the last row of the previous page of
  578. columns.  The PgUp and PgDn keys move the display one page up or down.
  579. The TAB key moves the display one page to the right, and the back tab
  580. key, or Shift TAB, moves the display one page to the left.
  581.  
  582. In addition, two other keys can be used, HOME and END.  HOME changes the
  583. display to show the first column and first row of the underlying data.
  584. Sometimes if you get confused about where you are in the display, you
  585. can press HOME to take you to the top left to get your bearings, then
  586. use the other paging keys to move around again.  The END key takes you
  587. to the bottom row of the underlying data but leaves the column unchanged.
  588.  
  589.  
  590.     Distance
  591.     ========
  592. 1 Character 1 Page To the Edge
  593. ==============================
  594. UP arrow     PGUP     HOME        
  595. DOWN arrow   PGDN     END     
  596. LEFT arrow   ShiftTab 
  597. RIGHT arrow  Tab      
  598.  
  599. A Word about TesSeRact(TM)
  600. ==========================
  601. BPOP uses the TesSeRact(TM) Ram-Resident Library and supports the
  602. TesSeRact Standard for Ram-Resident Program Communication. For
  603. information about TesSeRact, contact the TesSeRact Development Team
  604. at:
  605.  
  606.      TesSeRact Development Team
  607.      c/o Chip Rabinowitz
  608.      2084 Woodlawn Avenue
  609.      Glenside, PA 19038
  610.      (215) 884-3373
  611.  
  612.      Compuserve: 70731,20
  613.      MCIMAIL:    315-5415
  614.  
  615. This MCIMAIL Account has been provided to the TesSeRact Development
  616. Team by Borland International, Inc. The TesSeRact Development Team is
  617. in no way associated with Borland International, Inc. TesSeRact is a
  618. trademark of the TesSeRact Development Team.
  619.  
  620. TesSeRact is Copyright 1988 TesSeRact Development Team, All Rights
  621. Reserved.
  622.  
  623. Other Products and Prices
  624. =========================
  625.  
  626. Prices are fixed through 12/91.  After that, check.
  627.  
  628. Product             Price   Latest Version
  629. B-Edit                $39     2.0
  630. BIG for 1-2-3         $39     1.0
  631. BIG for WP            $39     1.0
  632. B-Pop                 $27     2.0
  633.  
  634. $9 discount on each of second and subsequent items in a single order.
  635.  
  636. Documentation for all programs is provided in large, easy-to-read,
  637. 18-point type.  In addition, all of the following large-character
  638. utility programs are included with any purchase at no extra cost:
  639.  
  640. B-Type, B-Dir, and B-Print
  641. are large-character replacements for the related DOS commands.
  642. B-Print prints text files  in large characters on Epson-compatible
  643. dot-matrix printers.
  644.  
  645. B-Look
  646. is a text file browser.  Scroll with arrow keys.
  647.  
  648. B-Font and B-Apply 
  649. modify the character shapes used in the above
  650. B-Ware products.
  651.  
  652. Registration
  653.     contact:         Hexagon Products
  654.     Bill Arendt      P.O. Box 1295
  655.     (708) 692-3355   Park Ridge, IL  60068-1295
  656.     
  657.  
  658.  
  659.  
  660. B-Ware Registration Form
  661. ========================
  662. When you register, please include the following:
  663.  
  664. Name: _________________________________________________________________________
  665.  
  666. Company: ______________________________________________________________________
  667.  
  668. Address: ______________________________________________________________________
  669.  
  670. City: ___________________________ State: ______________________________________
  671.  
  672. Zip: _____________ Phone: _____________________________________________________
  673.  
  674. Optional information:
  675.  
  676. Using on: Laptop  Desktop
  677.  
  678. Display:  VGA     EGA     CGA     Herc    Mono    Dual
  679.  
  680. Oper.Sys: DOS     OS/2
  681.  
  682. Preferred Input Device:   Mouse   Keyboard
  683.  
  684. Preferred chars/line:     Less  10  20  26  40  52  58  More
  685.  
  686. Suggestions for improving B-Ware? _____________________________________________
  687.  
  688. _______________________________________________________________________________
  689.  
  690. Where did you find B-Ware? ____________________________________________________
  691.  
  692. If you have speech synthesis hardware, what kind? _____________________________
  693.