home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / prg_hlp.zip / START.PRG < prev    next >
Text File  |  1987-04-07  |  4KB  |  81 lines

  1. **********************************************************************
  2. *                                                                                            *
  3. *                                S. Robert Davidoff                           *
  4. *                         ...START.PRG                                        *
  5. *                                                                                            *
  6. *                                                                                            *
  7. **********************************************************************
  8. *...This file will set the defaults for the program
  9. set talk off
  10. set echo off
  11. set escape on
  12. set device to screen
  13. do screen
  14. *set scoreboard off
  15. set bell off
  16. set heading off
  17. set menu on
  18. set exact off
  19. set deleted on
  20. set century off
  21. set key -1 to prg_hlp
  22. set procedure to menuproc
  23. public answer,bar,bell,cdate,choice,range
  24. public selection,mreturn,A,B,C
  25. public line,help_code,repeat,MNLQ,DRAFT
  26. A = "START"
  27. B = 0
  28. C = SPACE(10)
  29. MNLQ = chr(27) +"x"+ chr(1)
  30. DRAFT = chr(27)+"x"+chr(0)
  31. D = DATE()
  32. ANSWER = SPACE(1)
  33. BAR = chr(205)
  34.     do while len(bar) < 78
  35.         BAR = BAR + BAR
  36.     enddo
  37. BAR = substr(bar,1,78)
  38. line = "-"
  39.     do while len(line) <78
  40.         line = line + line
  41.     enddo    
  42. line = substr(line,1,78)
  43. BELL = chr(7)
  44. CDATE = cmonth(D) + str(day(D),3)+','+str(year(D),5)
  45. return
  46. **********************************************************************
  47. *                            END    START.PRG                                            *
  48. **********************************************************************
  49. procedure screen
  50. @  0,  0  SAY "*******************************************************************************"
  51. @  1,  0  SAY "*                                                                             *"
  52. @  2,  0  SAY "*                                                                             *"
  53. @  3,  0  SAY "*                                                                             *"
  54. @  4,  0  SAY "*                                                                             *"
  55. @  5,  0  SAY "*                                                                             *"
  56. @  6,  0  SAY "*                          STARRBYTE INCORPORATED                             *"
  57. @  7,  0  SAY "*                                                                             *"
  58. @  8,  0  SAY "*                  <<<  The business solutions people >>>                     *"
  59. @  9,  0  SAY "*                                                                             *"
  60. @ 10,  0  SAY "*                                                                             *"
  61. @ 11,  0  SAY "*                                                                             *"
  62. @ 12,  0  SAY "*                              PRESENT THE                                    *"
  63. @ 13,  0  SAY "*                                                                             *"
  64. @ 14,  0  SAY "*                                                                             *"
  65. @ 15,  0  SAY "*             *********  CLIPPER MANAGEMENT PROGRAM  *********                 *"
  66. @ 16,  0  SAY "*                                                                             *"
  67. @ 17,  0  SAY "*                                                                             *"
  68. @ 18,  0  SAY "*                           Designed by:                                      *"
  69. @ 19,  0  SAY "*                                                                             *"
  70. @ 20,  0  SAY "*                                                                             *"
  71. @ 21,  0  SAY "*                              S. ROBERT DAVIDOFF, D.M.D.                     *"
  72. @ 22,  0  SAY "*                                                                             *"
  73. @ 23,  0  SAY "*                                                                             *"
  74. @ 24,  0  SAY "*******************************************************************************"
  75. @ 16, 14  TO 16, 14    DOUBLE
  76. @ 16, 14  TO 16, 60    DOUBLE
  77. @  4, 15  TO 10, 60    DOUBLE
  78. @ 14, 14  TO 14, 60    DOUBLE
  79. @ 23,79
  80. inkey(8)
  81. return