home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / ho51.zip / HO51.ZIP / dialdemo.bat < prev    next >
DOS Batch File  |  1994-06-14  |  1KB  |  62 lines

  1. @echo off
  2. echo **
  3. echo **   THIS IS CURRENTLY SETUP AS A SAMPLE ONLY!     See the dialmenu.bat
  4. echo **
  5. echo **   Change the dialmenu.bat to meet your needs.
  6. echo **
  7. echo **
  8.  
  9. pause
  10. cls
  11. :start
  12. rem
  13. rem Change or remove the word SAMPLE when you setup the menu
  14. rem change the fred, pete, and so on to your desired names
  15. rem and matching phone numbers
  16. rem
  17. homnu menu "t:SAMPLE Dialing Menu" "Tracy" "Pete" "Fred" "P.C. Softsmith" "Hangup" "Quit"
  18. if errorlevel == 6 goto :end
  19. if errorlevel == 5 goto :hangup
  20. if errorlevel == 4 goto :pcsoft
  21. if errorlevel == 3 goto :fred
  22. if errorlevel == 2 goto :pete
  23. if errorlevel == 1 goto :tracy
  24. goto :end
  25. :tracy
  26. cls
  27. rem
  28. rem  remove the ECHO preceding HODIAL
  29. rem  replace the xxx-xxxx with the actual number
  30. rem  the CLS's and PAUSE's are often optional too.
  31. rem
  32. echo        tracy's number
  33. echo hodial xxx-xxxx
  34. pause
  35. goto :start
  36. :pete
  37. cls
  38. echo         pete
  39. echo hodial xxx-xxxx
  40. pause
  41. goto :start
  42. :fred
  43. cls
  44. echo         fred
  45. echo hodial xxx-xxxx
  46. pause
  47. goto :start
  48. :pcsoft
  49. cls
  50. echo         P. C. Softsmith
  51. echo hodial  604 433-5189
  52. pause
  53. goto :start
  54.  
  55. :hangup
  56. cls
  57. echo        hanging up
  58. echo hodial ATH
  59. goto :start
  60. :end
  61. cls
  62.