home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / psion / jbdata_zip / JBDATA2.TXT < prev    next >
Encoding:
Text File  |  1996-02-05  |  33.3 KB  |  806 lines

  1. History selection - Ctrl-Cursor-Up/Down
  2. -----------------
  3. This is a method of jumping to previously accessed records using this
  4. key combination. Up to 10 previous records are stored - the list is
  5. reset when loading a new file and the current list is destroyed rather
  6. than saved. Use Up to go back, Down to go forwards.
  7.  
  8. QuickSearch
  9. -----------
  10. There is a quick find which is used by just typing the word you
  11. require to find. Normally, this would only be used from the Line view
  12. although it is available in the Page view. This normally operates on
  13. the first visible field. The search field can be changed either using
  14. the Tab key or, more usefully, using Shift-Psion-T. This brings up a
  15. dialog which allows the search field to be selected ('All' can also be
  16. chosen and this allows all fields to be searched).
  17.  
  18. The inputted string will only work from the first letter of the field,
  19. to search within the field use Shift-Psion-H (this toggles the search
  20. method).
  21.  
  22. The search string is cleared by pressing Escape. There is also a
  23. timeout which clears the search string after a minute of not
  24. searching. The next find using the same string can be shown using Tab
  25. (in Line mode only - in Page mode use Psion-Tab).
  26.  
  27. Numeric fields can also be searched in this manner.
  28.  
  29. There is an option available (using Shift-Psion-U) to toggle between
  30. search all fields or search the single field. The search will react in
  31. the same way as the single field search (i.e. if on the first field,
  32. only fields starting with the letters typed will be matched, otherwise
  33. the entire field is checked for a match). The status of this toggle is
  34. visible on the Menu only as the reverse of the option shown - the
  35. status is saved with the setup.
  36.  
  37. N.B. When used in the Page view strange results may occur if the first
  38.      visible field in Line mode is something other than field one as
  39.      the procedure takes the field set in Line mode for its search
  40.      even in Page mode. This search field can be displayed and changed
  41.      using Shift-Psion-T.
  42.  
  43.      In Memory Sort mode Tab (or Psion-Tab in Page mode) will take you
  44.      to the next match but the displayed order may not match the order
  45.      in which the items are found (i.e. if, in reality, a record with
  46.      the search field 'Brake' has been edited and is therefore
  47.      positioned at the end of the file, then this would be displayed
  48.      after the search field 'Broke' although the sorted display will
  49.      still be shown correctly.
  50.  
  51. Find Psion-F
  52. ----
  53. This is a normal type search and works in the same way as that of
  54. other Apps. There are five additional options:
  55.  
  56. 1. Reverse search  - this searches from the end of the database rather
  57.                      than the front.
  58. 2. Single/Multiple - Single works in the usual way, Multiple will
  59.                      gather all the matches and then display only the
  60.                      found records as a Marked Records list.
  61.  
  62.  
  63.  
  64. JBData                                                         Page 13
  65. ----------------------------------------------------------------------
  66.  
  67. 3. Wildcards       - This allows wildcards to be used in the search
  68.                      string (e.g. * and ?). It is important that, if
  69.                      the compete field is not given, a '*' is placed
  70.                      at the front and the rear of the string. To
  71.                      search from the first character of a field omit
  72.                      the leading '*'.
  73. 4. Case Dependent  - This allows the selection of case dependency in
  74.                      the search - the default is case independent.
  75. 5. Go to Edit      - After finding the search string the program will
  76.                      automatically go to the edit mode and highlight
  77.                      the found string. This only works in Single find
  78.                      mode.
  79.  
  80. It is also possible to narrow the search with logical statements.
  81. There are two sorts available - the first sort is self explanatory,
  82. the second a little quicker to type.
  83. Currently these are:
  84.       and - &&
  85.        or - ^^
  86.       xor - ^&
  87.       not - --
  88.  
  89. so to look for a record that has 'David' and 'Road' then input 'david
  90. && road' or 'david and road'. If you wish to use the 'and' variation
  91. and also wish to search for the word 'and' then enclose it in
  92. quotation marks (e.g. "and").
  93.  
  94. If nothing is found the display will remain where it was before the
  95. search was started.
  96.  
  97. If you wish to use one of the logical search parameters at the start
  98. of the search string (e.g. 'not road') then preface the string with a
  99. space (i.e. ' not road' - rather than  'not road'). This is also true
  100. for the alternative characters (e.g. ' -- road' rather than
  101. '-- road').
  102.  
  103. To search for a blank field then use ' not ?'. Do not use the '*' as
  104. this will match none as well as some characters.
  105.  
  106. There is a problem with searching for a simple asterisk because the
  107. Psion call that searches records only works with wildcards - the
  108. implement a non-wildcard search use '_and *' where '_' is a space.
  109. This will use my own search (which is slower) and wildcards will be
  110. ignored if set so.
  111.  
  112. To search numeric fields with this command (or Find Field) then a
  113. logical search parameter must be used. This is because the internal
  114. Psion search routine ignores numeric fields so it is necessary to use
  115. the slower routine written by me - to direct to this requires a
  116. logical statement. If only one number is required to be found then,
  117. assuming that number is 12, use ' and 12' with a space before the
  118. 'and'. Of course, this will also find 121 or 112 or any number or
  119. string that has 12 in it.
  120.  
  121. N.B. When searching in Single mode and in Page mode, the find will be
  122.      highlighted on the screen. However - the Labels will almost
  123.      certainly not be in step with the data. At present there is no
  124.      way round this but I hope to fix it in the future.
  125.  
  126.  
  127.  
  128.  
  129.  
  130. JBData                                                         Page 14
  131. ----------------------------------------------------------------------
  132.  
  133.      If Go to Edit is enabled then the Labels may well display out of
  134.      step. It is also necessary to terminate the edit in the usual way
  135.      (using Escape or Tab) before Psion-G will work as you might
  136.      expect.
  137.  
  138. Find Field Shift-Psion-F
  139. ----------
  140. Searches in the same way as the normal search but allows a specific
  141. field only to be searched. If the enhanced logical statements are used
  142. then the find works in exactly the same way as that of the normal find
  143. (i.e. it does not take into account the field selected).
  144.  
  145. Find Again Psion-G
  146. ----------
  147. In Single Find mode this will display the next record that matches the
  148. search criteria.
  149.  
  150. Global Search and Replace Ctrl-Psion-F
  151. -------------------------
  152. This is a similar function to the Record Search and Replace but allows
  153. the Search to be global (throughout the file). The options are the
  154. Search item and the Replace item and, optionally, the field to search
  155. on. For this field selection to work the choice must be for Single in
  156. 'Fields to search'. The choice of the actual field is made in the
  157. 'Field' slot. The search is selectable between case dependent and case
  158. independent but, whatever case dependency is selected, the Replace
  159. will substitute the found data with the replacement as typed. Escape
  160. will terminate the Search and Replace option.
  161.  
  162. During the operation of this procedure the screen will automatically
  163. revert to Page mode - this is not selectable but, after the procedure
  164. has ended, the screen will revert to the previous display.
  165.  
  166. Once the search string has been found the record in which the item is
  167. will be displayed and the found string highlighted. An option to
  168. replace just this one, not replace, or replace all found matches will
  169. be given. Pressing Escape at this point will terminate the operation
  170. completely.
  171.  
  172. Jump to Record Psion-J
  173. --------------
  174. To jump to a specific record, if the number of that record is known,
  175. use Psion-J. If an illegal number is inputted then the dialog will
  176. remain active.
  177.  
  178. Display/Change QuickSearch field Shift-Psion-T
  179. --------------------------------
  180. To quickly find out which field the QuickSearch will look in use this
  181. key combination. The search field will display in a dialog which will
  182. also allow the field to be altered. In previous versions you could
  183. only change the field in Line mode, with this dialog you can now
  184. change the search field in either mode.
  185.  
  186. Display QuickSearch string Psion-T
  187. --------------------------
  188. This key combination will display the current QuickSearch string in
  189. the bottom right hand corner for around 2 seconds. This string is
  190. cleared after 2 minutes of non-use.
  191.  
  192.  
  193.  
  194.  
  195.  
  196. JBData                                                         Page 15
  197. ----------------------------------------------------------------------
  198.  
  199. Jump to Field Psion-/
  200. -------------
  201. In Line view it is possible to jump to a specific field using this
  202. command. It displays a list of field names and, once selected, the
  203. display will show that field as the currently selected one.
  204.  
  205. Enter Page/Line mode display toggle Shift-Psion-R
  206. -----------------------------------
  207. This switch allows the Enter key to toggle between Page and Line mode
  208. or to move to the next record. The current mode is saved in the setup
  209. and restored when re-opening the database. The current mode can be
  210. displayed on the menu under Display.
  211.  
  212. Remove records from list Psion-- / -
  213. ------------------------
  214. A record may be removed from a MultiFind/Marked Records list using
  215. this key combination (a MultiFind list is actually a marked records
  216. list). This command does not delete the record, it only hides it from
  217. the display.
  218.  
  219. Add record to list Psion-+ / Shift-Up / Shift-Dn / +
  220. ------------------
  221. This command is only active in the main display and allows the marking
  222. of records for display as a marked records list. The marked record is
  223. shown in italic text and in bold in the main view. A message will be
  224. shown marking a record.
  225.  
  226. The only way of telling whether you are looking at a marked records
  227. list or the normal list is, in marked records, the headings are
  228. printed in negative (reverse video) mode. This is only true of the
  229. Line mode. Page mode currently has no clue as to whether a marked list
  230. or normal list is being displayed.
  231.  
  232. Records can also be marked with Psion+ Spacebar - this toggles the
  233. status of the record so that a marked record will be unmarked and vice
  234. versa.
  235.  
  236. Toggle between marked records and main list Psion-V
  237. -------------------------------------------
  238. This command will toggle the display between the marked records list
  239. and the main list.
  240.  
  241. Reset marked records Shift-Psion-V
  242. --------------------
  243. To reset all marked records to unmarked, use this command. If used
  244. within the marked records display, it will change to the normal
  245. display.
  246.  
  247. Number of marked records Shift-Psion-J
  248. ------------------------
  249. The number of records currently in the marked record list can be shown
  250. using this key combination. It is displayed briefly in the bottom
  251. right hand corner of the screen.
  252.  
  253. About Shift-Psion-A
  254. -----
  255. This option displays a dialog box with contact details for the author
  256. and the current version number of JBData.
  257.  
  258.  
  259.  
  260.  
  261.  
  262. JBData                                                         Page 16
  263. ----------------------------------------------------------------------
  264.  
  265. Zoom In Psion-Z
  266. -------
  267. This will change the font used in the display by incrementing the font
  268. number. When it gets to the highest number font it will start again at
  269. the first relevant font. Separate fonts are used for the Line and
  270. Page/Edit views so altering one will not affect the other.
  271.  
  272. Zoom Out Shift-Psion-Z
  273. --------
  274. This will change the font used in the display by decrementing the font
  275. number. It is the exact opposite of Zoom In.
  276.  
  277. Print Setup Psion-Y
  278. -----------
  279. This option allows the Print setup to be changed in a similar way to
  280. other Applications.
  281.  
  282. Delete Setup Psion-Q
  283. ------------
  284. To delete the setup of the current database, use this option. The
  285. setup referred to is the setup of whether Page or Line mode, if Freeze
  286. is implemented, the font used, and other similar options.
  287.  
  288. Save Setup Shift-Psion-Q
  289. ----------
  290. This option will force a save of the database setup - it is normally
  291. saved when exiting the database or application. This procedure works
  292. independently of the Suspend Setup Save option.
  293.  
  294. Suspend Setup Save Ctrl-Shift-Psion-Q
  295. ------------------
  296. This key combination will bring up a dialog which allows for the Setup
  297. Save to be suspended with the file in question. If you have the setup
  298. just as you want it then this could be implemented as it will
  299. effectively stop the setup being changed between sessions and any
  300. changes made will only work whilst the file is currently open. Once
  301. the file has been closed down then any changes made will have been
  302. forgotten.
  303.  
  304. There are only two choices:
  305.  
  306.      1. Save Setup (the default - the setup is saved every time it is
  307.         changed).
  308.      2. No Save (suspend) - this stops the setup being saved with the
  309.         file.
  310.  
  311. Status Window Psion-Menu
  312. -------------
  313. A status window can be toggled between large, small and off in
  314. rotation using the Psion-Menu key combination. This window is similar
  315. to that available in the Psion applications.
  316.  
  317. Exit Program Psion-X
  318. ------------
  319. This key combination will exit (terminate) the program. This also
  320. works in the Edit window. In an emergency you can also use Psion-Esc
  321. but this will not save any setup and terminates the program without
  322. any warning. It is also possible that any changes made to the database
  323. may not be saved. To leave without saving any setup use Shift-Psion-X.
  324.  
  325.  
  326.  
  327.  
  328. JBData                                                         Page 17
  329. ----------------------------------------------------------------------
  330.  
  331. Password Control
  332. ----------------
  333. Passwords can be set by using Shift-Psion-C. If setting the password
  334. to On then a dialog will appear that requires the password to be given
  335. twice in identical fashion. The password will only be set if both
  336. passwords are identical (including case). If there was a previous
  337. password set then this old word has to be given in a separate dialog
  338. before the password can be changed. The password is limited to 19
  339. characters in length.
  340.  
  341. To remove a password then proceed as if changing the password, when
  342. confronted with the password dialog for the new word, just press
  343. Enter. This will automatically disable any password control.
  344.  
  345. It is not possible to preset a password for a file. If a password is
  346. set then the file will be password protected.
  347.  
  348. The password system is extremely simple in operation and will only
  349. deter the casual browser. The file itself is not encrypted, neither is
  350. the password, although Data will not open the file at all.
  351.  
  352. N.B. Passwords have not been inhibited on Flash media but a warning
  353.      appears if an attempt is made to password control a file on this
  354.      media. This is because there is some overwriting of the file
  355.      which could rapidly use up any spare space on the Flash pack if
  356.      the passwords are switched on and off (Flash media can't always
  357.      be overwritten, so there would be considerable growth of the
  358.      amount of media used every time the password is changed or
  359.      switched on or off). It is suggested that, if passwords are
  360.      wanted on Flash media, then they are left on until such time as
  361.      the requirement goes away completely.
  362.  
  363.      My brief experiments show that there is growth of around 200
  364.      bytes each time the password is altered but this should not be
  365.      taken as gospel and may well vary with the size of file.
  366.  
  367.      Please also note that if the Setup within the file is deleted on
  368.      a Password protected file then the file will still be password
  369.      protected but with a zero length password (i.e. just press Enter
  370.      when confronted with the Password dialog).
  371.  
  372. Sound toggle Shift-Psion-B
  373. ------------
  374. This option will toggle the sound (beeps) on and off - the status is
  375. not saved and only works for the session (i.e. it will be remembered
  376. when switching files but forgotten when JBData is closed down).
  377.  
  378. Edit Window Psion-E/Psion-U
  379. -----------
  380. At present it is not possible to alter the number of fields or change
  381. their types once they have been set. The obvious way of doing this
  382. (should it be necessary) would be to create a new file and import the
  383. data to it.
  384.  
  385. The line wrap is always off in the Edit window. It cannot be switched
  386. on. This is to restrict problems with the labels getting out of step
  387. with the data.
  388.  
  389. There are a few keys that operate in an edit window at present. These
  390. are:
  391.  
  392.  
  393.  
  394. JBData                                                         Page 18
  395. ----------------------------------------------------------------------
  396.  
  397. Find Psion-F
  398. ----
  399. Allows a search to take place in the current record being edited.
  400.  
  401. Find Again Psion-G
  402. ----------
  403. Once an item has been found, this allows the search to continue
  404. through the record to find the next match.
  405.  
  406. Find and Replace Psion-R
  407. ----------------
  408. Allows a search and, if found, then the item can be replaced with a
  409. given string. If a find is made then a dialog will appear allowing you
  410. to ignore the replacement of this item, replace all the items without
  411. a further prompt, or just replace this one and continue the search.
  412. Escape from the dialog will terminate this procedure.
  413.  
  414. Copy Psion-C
  415. ----
  416. Copies highlighted text to a clipboard. The clipboard is saved between
  417. edits so that text can be moved from one item to another.
  418.  
  419. It is also possible to copy data to the clipboard in Page mode. Press
  420. Tab and mark accordingly. No cursor is shown so only whole lines can
  421. be copied normally.
  422.  
  423. Although the option is shown on the menu in Line (Table) mode it is
  424. not applicable as there is no method of highlighting data.
  425.  
  426. Delete Psion-D
  427. ------
  428. Copies highlighted text to a clipboard and then deletes the text in
  429. the record. The clipboard is saved between edits but is discarded when
  430. the application is closed down.
  431.  
  432. Insert Psion-I
  433. ------
  434. Inserts previously copied text from the clipboard to the present
  435. cursor position.
  436.  
  437. Bring Psion-B
  438. -----
  439. Brings highlighted text from other applications (only if they support
  440. this option).
  441.  
  442. Evaluate Psion-V
  443. --------
  444. Evaluates a highlighted expression and shows the result on the screen
  445. with the original expression highlighted for deletion purposes. If
  446. this is used in a Integer or Long field then the result may not be
  447. acceptable unless there are no significant numbers in the decimal
  448. field (i.e. 12.00 is OK but 12.01 isn't).
  449.  
  450. Zoom (Shift-)Psion-Z
  451. ----
  452. This works in the same way as that of the main window allowing the
  453. font size to be changed up and down. See under Zoom In and Zoom Out
  454. above. This also affects the font in the Page view.
  455.  
  456.  
  457.  
  458.  
  459.  
  460. JBData                                                         Page 19
  461. ----------------------------------------------------------------------
  462.  
  463. Tab width Psion-T
  464. ---------
  465. To alter the width between Tabs (which are entered with Control-Tab)
  466. use this command which enables the distance to be specified. Under
  467. normal circumstances 4 characters per Tab is usual. The distance
  468. previously set is shown in the dialog initially. This data is saved
  469. along with the file.
  470.  
  471. Labels toggle Psion-H
  472. -------------
  473. This option will switch the labels display on or off. If no labels
  474. have been set then the type of field will show in brackets in place of
  475. the labels.
  476.  
  477. Link/Paste
  478. ----------
  479. This option is implemented in a similar way to that of other Psion
  480. applications.
  481.  
  482. What this means is that, in an edit mode, highlighted text from other
  483. applications that allow Link/Paste (e.g. Word/Data/Agenda) can be
  484. brought in to the edit window at the cursor location by using Psion-B.
  485. Also, any highlighted text in an edit window can be 'grabbed' by the
  486. other applications (normally Psion-B).
  487.  
  488. For this to work successfully, the application which has the
  489. information to be grabbed should have been the last one to be used
  490. before the application who requires the text.
  491.  
  492. N.B. It is possible to export from the Edit and Page view mode only.
  493.      The Page view is restricted in its marking in that there is no
  494.      visible cursor so whole lines only would normally be marked in
  495.      this mode.
  496.  
  497. Labels in Edit mode
  498. -------------------
  499. If labels have been setup then these will be displayed as in Data. If
  500. no labels have been set then the type of field will be displayed in
  501. brackets as an aide mŵmoire - e.g. (String) or (Integer). The labels
  502. can be toggled on and off using Psion-H.
  503.  
  504. Special Keys in Edit
  505. --------------------
  506. To end an Edit, press Tab - to leave the edit without changing
  507. anything use Escape. If there is data beyond the last field of the
  508. record then this data will be lost on Save so, under these
  509. circumstances, a dialog box will display requesting confirmation that
  510. it is OK to save as it is. 'Return' and Escape will take you back to
  511. the Edit.
  512.  
  513. N.B. It is not possible to use Tab or Esc from the Menu, the actions
  514.      are listed there as an aide mŵmoire. First remove the Menu with
  515.      Esc and then press either Tab or Esc.
  516.  
  517. To toggle the display of Symbols (Enter/Tab etc.) in the Edit mode use
  518. Shift-Psion-C.
  519.  
  520. There are a few special characters (or key-presses) in the Edit mode.
  521.  
  522.            Tab character - use Control-Tab
  523.  
  524.  
  525.  
  526. JBData                                                         Page 20
  527. ----------------------------------------------------------------------
  528.  
  529.    New Line within field - use Shift-Enter
  530.              Dial symbol - use Shift-Dial
  531.                   Ctrl-D - enters today's date in the format set in
  532.                            Time
  533.                   Ctrl-T - enters the current time in the format set
  534.                            in Time
  535.  
  536.  
  537. Help
  538. ----
  539. There is a brief on-line help available using the Help key. It does
  540. not cover all options but should assist under normal circumstances.
  541.  
  542.  
  543. Brief notes of the way JBData Setup works
  544. -----------------------------------------
  545. From Version 1.3.1 the setup is stored in the Descriptive Record as a
  546. type 12 sub-record (I can't use type 13 as DataDeluxe is already using
  547. it!). This sub-record is always the same length in each file but may
  548. vary from version to version of JBData. If the setup is changed then
  549. the revised setup is saved when the datafile is closed (either by
  550. exiting JBData or by opening a new file). This record is ignored by
  551. Data, DataDeLuxe, DataView, OPL programs and, hopefully, all other
  552. applications (there can be no guarantee of this though). There seems
  553. little point in publishing the structure of this record but, if you
  554. are interested, drop me an e-mail and I'll send you the information
  555. (bear in mind though that it does change quite a lot between
  556. versions).
  557.  
  558. Once the setup has been saved then the datafile will grow slightly in
  559. size (just above 300 bytes).
  560.  
  561. To make the datafile revert to an ordinary datafile (without this
  562. setup record), delete the record using Psion-H and then exit the
  563. application using Shift-Psion-X (or Psion-Escape). It should not be
  564. necessary to do this for the datafile to work with other applications.
  565. Note that this does not effect the Password control and, if the setup
  566. is deleted on a Password protected file, then the file will still be
  567. protected albeit with a null password (just press Enter to get in)!
  568.  
  569. N.B. I have discovered that DataDeluxe destroys my setup - this is
  570.      because it writes its own version of the Descriptive record and,
  571.      if Psion were to add items to this record, they would also go
  572.      missing after running DataDeluxe. There is nothing I can do about
  573.      this other than warn people.
  574.  
  575. Thanks
  576. ------
  577. Thanks are especially due to Tom Dolbilin for convincing me to release
  578. it, Wolfgang Schirmer (for help above and beyond anything I could have
  579. hoped for), Andrŵ Rodach, Andy Clarkson, Mark Avey, Nigel Wright, Kees
  580. Krick, Ryn Bodde, Jim Cooke and Chris Lees for their help with this
  581. project. Without them (and others whose suggestions I have
  582. implemented) it would not be half as good as it is. Thank you very
  583. much.
  584.  
  585. Please do not contact any of the above for support, they have no
  586. access to the source code and therefore it is unlikely that they will
  587. be able to answer any queries. If you have a problem, either contact
  588.  
  589.  
  590.  
  591.  
  592. JBData                                                         Page 21
  593. ----------------------------------------------------------------------
  594.  
  595. me via e-mail or post a message in the appropriate forum. Hopefully,
  596. someone will be able to help you if I am not around.
  597.  
  598. Get-out
  599. -------
  600. As is usual with programs of this sort, I shall not be held
  601. responsible for any loss of data , however caused, as a result of
  602. using this program. The user must take responsibility for his actions
  603. and uses the program at his own risk. I reserve all rights of
  604. copyright to the program although neither registration nor payment are
  605. required to use it.
  606.  
  607.  
  608. Limitations
  609. -----------
  610.  
  611. Only finds up to 999 finds in MultiFind.
  612. Only 999 marked records can be used at any one time.
  613.  
  614. The program needs around 100k of memory to work.
  615.  
  616.  
  617. Known Problems
  618. --------------
  619.  
  620. There is a known problem with Label displays in the Edit box sometimes
  621. getting out of step with the appropriate fields. At the moment, this
  622. requires a major re-write which I eventually hope to accomplish for
  623. Version 2.
  624.  
  625. At present the program does not accept remote commands from programs
  626. such as Tom Dolbilin's MACRO or KMAC. It is hoped to rectify this in a
  627. later version also.
  628.  
  629. If the program freezes for any reason then do not play, trying to un-
  630. freeze it. This is extremely unlikely to be successful and may cause
  631. greater problems in the long run (such as a complete hard reset of the
  632. computer - I know because this happened to me!). Instead, escape using
  633. Psion-Esc immediately - please let me know if this happens to you and
  634. under what circumstances.
  635.  
  636.  
  637. Contact
  638. -------
  639. John Boyce
  640. CompuServe: 100014,1240
  641. CIX/Internet: jboyce@cix.compulink.co.uk
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657.  
  658. JBData                                                         Page 22
  659. ----------------------------------------------------------------------
  660.  
  661. Index
  662. -----
  663. About                                                           16
  664. Add Record                                                       8
  665. Add record to list                                              16
  666.  
  667. Blank Lines Toggle                                              11
  668. Bring                                                           19
  669.  
  670. Calculate Widths                                                10
  671. Compress File                                                    7
  672. Contact                                                         22
  673. Copy                                                            19
  674.  
  675. Delete                                                          19
  676. Delete Record                                                    8
  677. Delete Setup                                                    17
  678. Description                                                      2
  679. Dialling                                                        12
  680. Display/Change QuickSearch field                                15
  681. Displayed fields                                                11
  682. Displayed fields reset                                          11
  683.  
  684. Edit Labels                                                     10
  685. Edit Widths                                                     10
  686. Edit Window                                                     18
  687. Enter Key Toggle                                                10
  688. Enter Page/Line mode display toggle                             15
  689. Evaluate                                                        19
  690. Exit Program                                                    17
  691.  
  692. File Conversion                                                  6
  693. Find                                                        13, 18
  694. Find Again                                                  14, 19
  695. Find and Replace                                                19
  696. Find Field                                                      14
  697. Freeze Fields                                                   11
  698.  
  699. Get-out                                                         22
  700. Global Search and Replace                                       15
  701. Grid Lines                                                      11
  702.  
  703. Help                                                            21
  704. History selection                                               12
  705.  
  706. Index                                                           23
  707. Insert                                                          19
  708. Installation                                                     2
  709.  
  710. JBData Setup                                                    21
  711. Jump to Field                                                   15
  712. Jump to Record                                                  15
  713.  
  714. Known Problems                                                  22
  715.  
  716. Labels in Edit mode                                             20
  717. Labels Toggle                                                   11
  718. Labels toggle                                                   20
  719. Limitations                                                     22
  720. Line Wrap                                                       10
  721.  
  722.  
  723.  
  724. JBData                                                         Page 23
  725. ----------------------------------------------------------------------
  726.  
  727. Link/Paste                                                      20
  728. List
  729.   add record                                                    16
  730.   number of marked records                                      16
  731.   remove record                                                 16
  732.   reset                                                         16
  733.   toggle                                                        16
  734.  
  735. Marked records
  736.   add records                                                   16
  737.   number selected                                               16
  738.   remove record                                                 16
  739.   reset to none                                                 16
  740.   toggle display                                                16
  741. Memory Sort                                                      7
  742. Merge and Remap                                                  5
  743. Merge File                                                       4
  744. Modify Fields                                                    9
  745. Movement                                                         3
  746.  
  747. New File                                                         6
  748. Number of marked records                                        16
  749. Numerical Sort                                                   8
  750.  
  751. Open File                                                        4
  752. Operation                                                        2
  753.  
  754. Page/Line View                                                  10
  755. Password                                                        17
  756. Password Control                                                17
  757. Print Record                                                     9
  758. Print Setup                                                     17
  759.  
  760. QuickSearch                                                     12
  761.  
  762. Record Number Toggle                                            11
  763. Remove Duplicate Records                                         9
  764. Remove records from list                                        16
  765. Reset marked records                                            16
  766. Reset Sort Fields                                                8
  767. Reset Widths                                                    10
  768.  
  769. Save As                                                          6
  770. Save Selected                                                    6
  771. Save Setup                                                      17
  772. Search and Replace                                              19
  773.   Global                                                        15
  774. Setup
  775.   Delete                                                        17
  776.   Save                                                          17
  777.   Suspend Save                                                  17
  778. Sort
  779.   memory                                                         7
  780.   reset fields                                                   8
  781. Sort File                                                        7
  782. Sound toggle                                                    18
  783. Special Keys in Edit                                            20
  784. Status Window                                                   17
  785. Support                                                         22
  786. Suspend Setup Save                                              17
  787.  
  788.  
  789.  
  790. JBData                                                         Page 24
  791. ----------------------------------------------------------------------
  792.  
  793. Tab width                                                       20
  794. Thanks                                                          21
  795. Toggle between marked records and main                          16
  796. Toggle Symbols                                                  12
  797.  
  798. Update Record                                                    8
  799.  
  800. Zoom                                                            19
  801. Zoom In                                                         16
  802. Zoom Out                                                        16
  803.  
  804.  
  805.                                             John Boyce 5 February 1996
  806.