home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / msdial.zip / DIALER.TXT < prev    next >
Text File  |  1993-02-02  |  3KB  |  70 lines

  1. Phone Dialer
  2. Version 1.02
  3. for the Microsoft Access
  4. Personal Information Manager
  5.  
  6. Jack Presley
  7. Presley Computing
  8. October 1, 1992
  9. (.02 update 2/2/93)
  10.  
  11. Quick Start
  12.  
  13. 1.  Extract DIALER.MDB
  14. 2.  Open PIM.MDB without running its AutoExec macro (Shift+Enter).
  15. 3.  ++ Delete or Rename the *FORM* "Address."
  16. 4.  ++ Delete or Rename the *MODULE* "Address."
  17. 5.  Import from DIALER.MDB the Form: "Address."
  18. 6.  Import from DIALER.MDB the Module: "Address."
  19. 7.  Open the Address module and change the comm port 
  20.     and long distance prefix as required.
  21. 8.  Save, exit, and re-start PIM normally.
  22.  
  23. ++ If you haven't customized the Address Form or Module, you may 
  24. delete them if you don't want to keep a backup copy.
  25.  
  26. ****************** Corrections for 1.01 Users Only *******************
  27. There is a minor error in Dial function in Module: Address.  This
  28. error prevents the Dial input box from displaying the default number
  29. if it is a local number.  To correct the problem, display the Dial 
  30. function in the Address Module.  Look for the line:
  31. PhoneNumber$ = Trim(PhoneNumber$)
  32.  
  33. Change this line to:
  34. Number$ = Trim(PhoneNumber$)
  35.  
  36. Replace all subsequent occurances of PhoneNumber$ with Number$.  
  37. (There are only two, and they are just below this line.) 
  38. **********************************************************************
  39.  
  40. Overview:  The PIM Phone Dialer is simply one function and some
  41. declarations in the Module: Address.  A Dial command button was
  42. added to the Address form.  When it is pushed it calls the new
  43. Dial function, passing it the contents of the Phone field of the
  44. form.  If the field is blank, the user is asked for a number.  If
  45. if is over 8 characters in length, and optional long distance code
  46. is sent prior to dialing the number.
  47.  
  48. Remarks:  This is a simple phone dialer.  There is no error checking
  49. or setup.  Be sure to set the comm port value and Long Distance
  50. prefix values in the Declarations section of the Address Module.
  51.  
  52. Suggestions:  One could easily store communications settings and
  53. long distance access codes in the database.  Error checking could
  54. easily be added with the addition of a few more calls to the Windows
  55. API.  You could have two Dial buttons.  The second one could be for
  56. inter-office calls and might dial the last four digits of the number.
  57. Auto-redial could also be added by checking the buffer for a BUSY
  58. signal.
  59.  
  60. Where to go for help:  You can always ask me on the forum.  However,
  61. I learned how to do this by studying the COMMDEMO program that came
  62. with VB Pro 1.0.  This program demonstrates how to use all the comm
  63. API calls in Windows.  I don't expect to upgrade this as we don't
  64. use the PIM around here.
  65.  
  66. Good luck,
  67.  
  68. Jack Presley                70700,166
  69. Presley Computing
  70.