home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / utilsm / psionu / ALLOPL.DOC next >
Text File  |  1991-08-10  |  5KB  |  119 lines

  1. DB.OPL - Written on and for a PSION Model XP
  2. ============================================
  3. Allows records to be stripped out of "A:MAIN", by a search literal 
  4. which can be embedded in any one of the first 10 "fields" per record.
  5. Program only handles up to 10 fields per input record as coded.
  6.  
  7. As records are selected from "A:MAIN", they are written to "A:DBX" 
  8. and reformatted such that each field in the selected record is
  9. written as a separate record to "A:DBX".   Further, all records
  10. created from one record in "A:MAIN" have two space characters (blanks)
  11. inserted at their beginning, except the first.
  12.  
  13. This programs intention was one way to overcome the way a PSION file
  14. looks on your PC when you view it.  On the PSION, the "fields" in the
  15. records are separted by TAB characters, so on the PC, every PSION
  16. record stretchs across one line.  After "A:MAIN" is run through this
  17. program (you can select all records by using a NULL search target)
  18. and the resultant "A:DBX" is uploaded to the PC, the data is in a more
  19. conventional format, especially when the "A:MAIN" file has name and
  20. phone number information.
  21.  
  22. My use is that I always have the PSION at work and travel and use it
  23. as the sole manager/aupdater of my name, address, and phone info.  
  24. Periodically, I run "DB.OPL" and upload "A:DBX" to my PC.  When in the 
  25. office, I always have this file in a Windows Notepad available for 
  26. quick search.
  27.  
  28.  
  29.  
  30. DBD.OPL - Written on and for a PSION Model XP
  31. =============================================
  32. Companion program for "DB.OPL".  Displays the "header" (first) field
  33. of every record found in "A:DBX"
  34.  
  35.  
  36. LOCK.OPL - Written on and for a PSION Model XP
  37. ==============================================
  38. Enhanced version of the one in the "PSION ORGANISER II" manual on
  39. page 151.  Be careful with this one, if you forget the PASSWORD
  40. it's pull the batteries time, and all data and programs except what
  41. came with it are history.  This program cannot be "broken" out of.
  42.  
  43. Test for PASSWORD is CASE SENSITIVE.  You have to code your PASSWORD
  44. in and re-translate it.  Just change the literal "MADDOG" up in the 
  45. "IF E$=" statement.
  46.  
  47. An improper PASSWORD entry results in a rather long annoying noise 
  48. which you can alter or get rid of, the "BEEP 9999,500" statement.  
  49. Proper sign-in displays a date and time.
  50.  
  51.  
  52.  
  53. JUL.OPL - Written on and for a PSION Model XP
  54. =============================================
  55. Quick and dirty JULIAN DATE display program.
  56.  
  57.  
  58.  
  59. BEEPER.OPL - Written on and for a PSION Model XP
  60. ================================================
  61. Noisemaker routine called from some of the other programs in this group,
  62. like "DB.OPL", "DELF.OPL".
  63.  
  64.  
  65.  
  66. DELF.OPL - Written on and for a PSION Model XP
  67. ==============================================
  68. Used to delete files on the PSION XP.  Can be used to delete "A:DBX" 
  69. created by "DB.OPL" when you're through with it.
  70.  
  71.  
  72.  
  73. FILES.OPL - Written on and for a PSION Model XP
  74. ===============================================
  75. Displays all data files on device "A:".
  76.  
  77.  
  78.  
  79. MI.OPL - Written on and for a PSION Model XP
  80. ============================================
  81. Accepts input file name and then displays total available memory
  82. in the XP, in bytes, and the following info about the specified file:
  83.    
  84.    number of records
  85.    number of total bytes
  86.    average record size
  87.    maximum record size
  88.    first field of largest record
  89.  
  90. I use it against "A:MAIN" to see how much memory is available for a
  91. run of "DB.OPL", and how many records "DB.OPL" has to work against,
  92. and after a run of "DB.OPL", how many records it created (to check 
  93. against a PC upload).
  94.  
  95.  
  96.  
  97. MUTE.OPL - Written on and for a PSION Model XP
  98. ==============================================
  99. Toggles the key-click on and off.  From the "PSION ORGANISER II" manual.
  100. Caution, if "key click" is off, any alarms or appointment reminders set
  101. in DIARY will be silent.
  102.  
  103.  
  104.  
  105. PEEK.OPL - Written on and for a PSION Model XP
  106. ==============================================
  107. Accepts a starting and ending memory location, in decimal, and then
  108. displays that range of memory in ASCII (where possible) and HEX right
  109. underneath.  Non-display ASCII values display as "?".
  110.  
  111.  
  112.  
  113. ZM.OPL - Written on and for a PSION Model XP
  114. ============================================
  115. Displays the value for each of the ten internal "calculator" memory
  116. registers and zeroes them out.  Many of the programs use these registers
  117. as run time variables (but initialize them first anyways).  I use this as
  118. a debugging aid when testing new programs.
  119.