home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Product / Product.zip / sc621_3.zip / src / tutorial.sc < prev    next >
Text File  |  1992-05-11  |  5KB  |  100 lines

  1. # This data file was generated by the Spreadsheet Calculator.
  2. # You almost certainly shouldn't edit it.
  3.  
  4. define "page5" A90
  5. define "page1" A11
  6. define "page2" A30
  7. define "page3" A50
  8. define "page4" A71
  9. leftstring A1 = "This is a brief sc tutorial, best run in a 24-line window."
  10. leftstring A2 = "Type 'q' to exit, ^Z to suspend (w/ Job Control)."
  11. leftstring A3 = "^G interrupts a command."
  12. leftstring A5 = "Cells are named by their column and row number.  For example,"
  13. leftstring A6 = "Cell A6"
  14. leftstring B6 = "Cell B6"
  15. leftstring C6 = "Cell C6"
  16. leftstring A7 = "Cell A7"
  17. leftstring A8 = "Cell A8"
  18. leftstring C8 = "Cell C8"
  19. leftstring A9 = "Cells range from A0 to ZZ(some number depending on free memory)."
  20. leftstring A10 = "Cells can also be named by the user.  See 'range names' in the manual."
  21. leftstring page1 = "You can move the cursor a couple of different ways:"
  22. leftstring B12 = "^n, j and the <DOWN> arrow key go down"
  23. leftstring B13 = "^p, k and the <UP> arrow key go up"
  24. leftstring B14 = "^b, h and the <LEFT> arrow key go left"
  25. leftstring B15 = "^f, l and the <RIGHT> arrow key go right"
  26. leftstring B16 = "You can go directly to a cell by typing 'g' and the cell name. "
  27. leftstring B17 = "'g c6' will take you to cell c6."
  28. leftstring A19 = "Cells can contain numbers, formulas, or text."
  29. leftstring A20 = "Most of the cells on this page contain text."
  30. leftstring C21 = "<Type 'g page2' to continue>"
  31. leftstring A23 = "Cell d23 contains text"
  32. leftstring D23 = "Text "
  33. leftstring A24 = "Cell d24 contains a number"
  34. let D24 = 123.34
  35. leftstring A25 = "Cell d25 contains a formula"
  36. let D25 = D24+88
  37. leftstring A27 = "To see what the cell contains, just move the cursor"
  38. leftstring A28 = "onto the cell.  The contents will show up on line 1 in the brackets."
  39. leftstring page2 = "You can enter data into cells like this:"
  40. leftstring B31 = "'<text' enters left justified text."
  41. leftstring B32 = "'>text' enters right justified text."
  42. leftstring B33 = "'=number' enters a number"
  43. leftstring B34 = "'=formula' enters a formula."
  44. leftstring A36 = "Try duplicating d23 through d25 in e23 though e25."
  45. leftstring A38 = "You erase a cell by typing 'x' with the cursor on the cell."
  46. leftstring C41 = "<Type 'g page3' to continue>"
  47. leftstring A43 = "Here is a typical use for numbers and formulas:"
  48. let A45 = 10.3
  49. let B45 = 1877.5
  50. let C45 = 234.7
  51. let E45 = @sum(A45:C45)
  52. let A46 = 44.56
  53. let B46 = 44.3
  54. let C46 = -3
  55. let E46 = @sum(A46:C46)
  56. let A47 = 88.74
  57. let B47 = 8000
  58. let C47 = -9
  59. let E47 = @sum(A47:C47)
  60. let A48 = 99.2
  61. let B48 = -88
  62. let C48 = -44.6
  63. let E48 = @sum(A48:C48)
  64. let page3 = @sum(A45:A48)
  65. let B50 = @sum(B45:B48)
  66. let C50 = @sum(C45:C48)
  67. let E50 = @sum(A45:C48)
  68. leftstring A52 = "The data is entered in a45 through c48."
  69. leftstring A53 = "Cells a50, b50 and c50 sum their respective columns."
  70. leftstring A54 = "Cells e45, e46, e47, and e48 sum their respective rows."
  71. leftstring A55 = "Cell E50 is a grand total."
  72. leftstring A56 = "Try changing some of the data cells and watch the sums change."
  73. leftstring A58 = "You can also edit cells by putting the cursor on the cell and typing:"
  74. leftstring B59 = "'e' to edit the numeric portion."
  75. leftstring B60 = "'E' to edit the string portion."
  76. leftstring C61 = "<Type 'g page4' to continue>"
  77. leftstring A63 = "Since you are reading this, you know that you can load "
  78. leftstring A64 = "a data base from a file by typing the file name as an"
  79. leftstring A65 = "argument to the program.  You can also load or save a "
  80. leftstring A66 = "data base using the file commands:"
  81. leftstring B68 = "'G file'"
  82. leftstring C68 = "Gets the data from an sc file."
  83. leftstring B69 = "'P file'"
  84. leftstring C69 = "Puts the data from the spreadsheet into a file."
  85. leftstring page4 = "Try 'P foo.sc' to write this to the file foo.sc"
  86. leftstring A72 = "The Get command erases the current spreadsheet.  "
  87. leftstring A73 = "To merge a spreadsheet with the one currently in"
  88. leftstring A74 = "the machine, use:"
  89. leftstring B76 = "'M file'"
  90. leftstring C76 = "Merge the data from a saved sc file."
  91. leftstring A78 = "You can also get human readable versions of the data"
  92. leftstring A79 = "by using the Write command:"
  93. leftstring C81 = "<Type 'g page5' to continue>"
  94. leftstring A83 = "Try 'W tut.txt' for a clear text version of the tutorial."
  95. leftstring A86 = "This is the end of the tutorial.  We have explored"
  96. leftstring A87 = "The basic commands.  Much more detail is available"
  97. leftstring A88 = "in the man page."
  98. leftstring page5 = "To quit this program, type 'q'."
  99. leftstring D92 = "GOOD LUCK!"
  100.