home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / PROGRAMS / SPREDSHT / QSOLVE11.LBR / READ.ME < prev   
Text File  |  2000-06-30  |  3KB  |  101 lines

  1.  
  2.                              QS version 1.1
  3.  
  4.                             By Howard Dutton
  5.                          Genie XJM23622 H.DUTTON
  6.  
  7.  
  8.                 QS, a spread sheet for CP/M features:
  9.  
  10.                 26col x 99row sheet
  11.                 variable col width
  12.                 "WordStar" type editing functions / movement,
  13.                 algabric formula evaluation (nested cell refs. allowed)
  14.                 trigimetric functions,
  15.                 column / row summation functions.
  16.  
  17.  
  18.  
  19.                              Instructions:
  20.  
  21.     First: in QS press </> for help, this will bring up a screen with
  22.            all of the commands/options.
  23.  
  24.   Positioning to desired cell.
  25. use:
  26.            <^S>-rgt     <^D>-lft     <^E>-up     <^X>-dn
  27.            <^A>-pg rgt  <^F>-pg lft  <^R>-pg up  <^C>-pg dn
  28.  
  29.   To enter text into a cell press the <`> key and type "what ever" then <RET>.
  30. use:       ^S to move left
  31.            ^D to move right
  32.            ^V to toggle insert/overwrite mode
  33.            ^G to delete right
  34.         <DEL> to delete left
  35.  
  36.   Graphic cell entery functions the same as text but graphic symbols are
  37. shown in place of text. (that is on H19 terminals but you may be able
  38. to use this on your system. If you have TP look in the file QSMISC and
  39. the note on compiling at the end of this file!)
  40.  
  41.   To enter a formula depress the <=> key then type the formula followed
  42. by the format suffix and <RET>. Output formats include hidden (HIDE),
  43. floating (FD), dollar (DOL), scientific (SCI), and bar-graph (BAR).
  44. The FD and DOL formats can have optional floating $ or trailing % / #.
  45. And all formats (except BAR) can be left/right/center justifyed.
  46. for example:
  47.  
  48.  <=>
  49.  sin(45)&sci>
  50.  <RET>
  51. This will cause the cell to show the value of the sine of 45 degrees.
  52. The format of output is scientific-right-justifyed.
  53.  
  54.  <=>
  55.  100&dol$<
  56.  <RET>
  57. This will show the value $100. The format is dollar-$-right-justifyed.
  58.  
  59.  <=>
  60.  60&dol$^
  61.  <RET>
  62. This will show the value $100. The format is dollar-$-centered.
  63.  
  64.  <=>
  65.  10&bar
  66.  <RET>
  67. This will display ##########.
  68.  
  69.  <=>
  70.  A1
  71.  <RET>
  72. This will show the value of cell A1.
  73. The format is defalt (dollar-right-justifyed).
  74.  
  75.  <=>
  76.  SUM[A1>A10]
  77.  <RET>
  78. This will show the value of cells A1 through A10 added.
  79. The format is defalt (dollar-right-justifyed).
  80.  
  81.  
  82.   Also various numeric functions are available: In QS type </> for help and
  83. you will get a list of them.
  84.  
  85.  
  86.                                  NOTES:
  87.                 Since version 1 I have made some changes:
  88.  
  89.    Corrected a 'bug' that caused stray numbers to be printed (they were
  90.    really h19 control chars for cursor on/off and block/underline that
  91.    I forgot to disable. Sorry for the trash!).
  92.    And another bug that kept the  DOL$<  FD$<  formats from from working.
  93.    Help is now on disk to save memory (free space now up 5k from v1.0).
  94.  
  95.    Also:
  96.      If you have Turbo Pascal (I use Version 2) make sure you set the
  97.    end address of the options menu to '97FF'.  This saves about 5k of memory
  98.    for the recursion stack.
  99.  
  100.  
  101.                                                 Howard.