home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l180 / 1.ddi / CALENDAR.BAS < prev    next >
Encoding:
BASIC Source File  |  1989-02-07  |  26.9 KB  |  728 lines

  1.   ' ************************************************
  2.   ' **  Name:          CALENDAR                   **
  3.   ' **  Type:          Toolbox                    **
  4.   ' **  Module:        CALENDAR.BAS               **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   '
  8.   ' USAGE: No command line parameters
  9.   ' .MAK FILE:       (none)
  10.   ' PARAMETERS:      (none)
  11.   ' VARIABLES:       month%     Month for demonstration
  12.   '                  day%       Day for demonstration
  13.   '                  year%      Year for demonstration
  14.   '                  dat$       Date for demonstration
  15.   '                  j&         Julian day number
  16.   '                  tim$       System time right now
  17.   '                  hour%      Hour right now
  18.   '                  minute%    Minute right now
  19.   '                  second%    Second right now
  20.   '                  sec&       Seconds since last second of 1979
  21.   
  22.   
  23.     CONST FALSE = 0
  24.     CONST TRUE = NOT FALSE
  25.   
  26.   ' Functions
  27.     DECLARE FUNCTION CheckDate% (dat$)
  28.     DECLARE FUNCTION Date2Day% (dat$)
  29.     DECLARE FUNCTION Date2Julian& (dat$)
  30.     DECLARE FUNCTION Date2Month% (dat$)
  31.     DECLARE FUNCTION Date2Year% (dat$)
  32.     DECLARE FUNCTION DayOfTheCentury& (dat$)
  33.     DECLARE FUNCTION DayOfTheWeek$ (dat$)
  34.     DECLARE FUNCTION DayOfTheYear% (dat$)
  35.     DECLARE FUNCTION DaysBetweenDates& (dat1$, dat2$)
  36.     DECLARE FUNCTION HMS2Time$ (hour%, minute%, second%)
  37.     DECLARE FUNCTION Julian2Date$ (julian&)
  38.     DECLARE FUNCTION MDY2Date$ (month%, day%, year%)
  39.     DECLARE FUNCTION MonthName$ (dat$)
  40.     DECLARE FUNCTION Second2Date$ (second&)
  41.     DECLARE FUNCTION Second2Time$ (second&)
  42.     DECLARE FUNCTION Time2Hour% (tim$)
  43.     DECLARE FUNCTION Time2Minute% (tim$)
  44.     DECLARE FUNCTION Time2Second% (tim$)
  45.     DECLARE FUNCTION TimeDate2Second& (tim$, dat$)
  46.   
  47.   ' Subprograms
  48.     DECLARE SUB OneMonthCalendar (dat$, row%, col%)
  49.   
  50.   ' Let's choose the fourth of July for the demonstration
  51.     CLS
  52.     PRINT "All about the fourth of July for this year..."
  53.     month% = 7
  54.     day% = 4
  55.     year% = Date2Year%(DATE$)
  56.   
  57.   ' Demonstrate the conversion to dat$
  58.     PRINT
  59.     dat$ = MDY2Date$(month%, day%, year%)
  60.     PRINT "QuickBASIC string format for this date is "; dat$
  61.   
  62.   ' Check the validity of this date
  63.     IF CheckDate%(dat$) = FALSE THEN
  64.         PRINT "The date you entered is faulty... " + dat$
  65.         SYSTEM
  66.     END IF
  67.   
  68.   ' Day of the week and name of the month
  69.     PRINT "The day of the week is "; DayOfTheWeek$(dat$); "."
  70.   
  71.   ' Astronomical Julian day number
  72.     j& = Date2Julian&(dat$)
  73.     PRINT "The Julian day number is"; j&
  74.   
  75.   ' Conversion of Julian number to date
  76.     PRINT "Date for the given Julian number is "; Julian2Date$(j&); "."
  77.   
  78.   ' Convert the date string to numbers
  79.     PRINT "The month, day, and year numbers are ";
  80.     PRINT Date2Month%(dat$); ","; Date2Day%(dat$); ","; Date2Year%(dat$)
  81.   
  82.   ' The month name
  83.     PRINT "The month name is "; MonthName$(dat$)
  84.   
  85.   ' Day of the year
  86.     PRINT "The day of the year is"; DayOfTheYear%(dat$)
  87.   
  88.   ' Day of the century
  89.     PRINT "The day of the century is"; DayOfTheCentury&(dat$)
  90.   
  91.   ' Days from right now
  92.     IF Date2Julian&(dat$) < Date2Julian&(DATE$) THEN
  93.         PRINT "That was"; DaysBetweenDates&(dat$, DATE$); "days ago."
  94.     ELSEIF Date2Julian&(dat$) > Date2Julian&(DATE$) THEN
  95.         PRINT "That is"; DaysBetweenDates&(dat$, DATE$); "days from now."
  96.     ELSE
  97.         PRINT "The date you entered is today's date."
  98.     END IF
  99.   
  100.   ' Print a one-month calendar
  101.     OneMonthCalendar dat$, 14, 25
  102.   
  103.   ' Wait for user
  104.     LOCATE 23, 1
  105.     PRINT "Press any key to continue"
  106.     DO
  107.     LOOP UNTIL INKEY$ <> ""
  108.     CLS
  109.   
  110.   ' Demonstrate extracting hour, minute, and second from tim$
  111.     dat$ = DATE$
  112.     tim$ = TIME$
  113.     hour% = Time2Hour%(tim$)
  114.     minute% = Time2Minute%(tim$)
  115.     second% = Time2Second%(tim$)
  116.     PRINT "The date today... "; dat$
  117.     PRINT "The time now  ... "; tim$
  118.     PRINT "The hour, minute, and second numbers are ";
  119.     PRINT hour%; ","; minute%; ","; second%
  120.   
  121.   ' Now put it all back together again
  122.     PRINT "Time string created from hour, minute, and second is ";
  123.     PRINT HMS2Time$(hour%, minute%, second%)
  124.   
  125.   ' Seconds since end of 1979
  126.     dat$ = DATE$
  127.     PRINT "The number of seconds since the last second of 1979 is";
  128.     sec& = TimeDate2Second&(tim$, dat$)
  129.     PRINT sec&
  130.     PRINT "From this number we can extract the date and time..."
  131.     PRINT Second2Date$(sec&); " and "; Second2Time$(sec&); "."
  132.   
  133.  
  134.   ' ************************************************
  135.   ' **  Name:          CheckDate%                 **
  136.   ' **  Type:          Function                   **
  137.   ' **  Module:        CALENDAR.BAS               **
  138.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  139.   ' ************************************************
  140.   '
  141.   ' Returns TRUE if the given date represents a real
  142.   ' date or FALSE if the date is in error.
  143.   '
  144.   ' EXAMPLE OF USE:  test% = CheckDate%(dat$)
  145.   ' PARAMETERS:      dat$       Date to be checked
  146.   ' VARIABLES:       julian&    Julian day number for the date
  147.   '                  test$      Date string for given Julian day number
  148.   ' MODULE LEVEL
  149.   '   DECLARATIONS:  CONST FALSE = 0
  150.   '                  CONST TRUE = NOT FALSE
  151.   '
  152.   '                  DECLARE FUNCTION CheckDate% (dat$)
  153.   '                  DECLARE FUNCTION Date2Julian& (dat$)
  154.   '                  DECLARE FUNCTION Julian2Date$ (julian&)
  155.   '
  156.     FUNCTION CheckDate% (dat$) STATIC
  157.         julian& = Date2Julian&(dat$)
  158.         test$ = Julian2Date$(julian&)
  159.         IF dat$ = test$ THEN
  160.             CheckDate% = TRUE
  161.         ELSE
  162.             CheckDate% = FALSE
  163.         END IF
  164.     END FUNCTION
  165.  
  166.   ' ************************************************
  167.   ' **  Name:          Date2Day%                  **
  168.   ' **  Type:          Function                   **
  169.   ' **  Module:        CALENDAR.BAS               **
  170.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  171.   ' ************************************************
  172.   '
  173.   ' Returns the day number given a date in the
  174.   ' QuickBASIC string format MM-DD-YYYY.
  175.   '
  176.   ' EXAMPLE OF USE:  day% = Date2Day%(dat$)
  177.   ' PARAMETERS:      dat$       Date of concern
  178.   ' VARIABLES:       (none)
  179.   ' MODULE LEVEL
  180.   '   DECLARATIONS:  DECLARE FUNCTION Date2Day% (dat$)
  181.   '
  182.     FUNCTION Date2Day% (dat$) STATIC
  183.         Date2Day% = VAL(MID$(dat$, 4, 2))
  184.     END FUNCTION
  185.  
  186.   ' ************************************************
  187.   ' **  Name:          Date2Julian&               **
  188.   ' **  Type:          Function                   **
  189.   ' **  Module:        CALENDAR.BAS               **
  190.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  191.   ' ************************************************
  192.   '
  193.   ' Returns the astronomical Julian day number given a
  194.   ' date in the QuickBASIC string format MM-DD-YYYY.
  195.   '
  196.   ' EXAMPLE OF USE:  j& = Date2Julian&(dat$)
  197.   ' PARAMETERS:      dat$       Date of concern
  198.   ' VARIABLES:       month%     Month number for given date
  199.   '                  day%       Day number for given date
  200.   '                  year%      Year number for given date
  201.   '                  ta&        First term of the Julian day number calculation
  202.   '                  tb&        Second term of the Julian day number calculation
  203.   '                  tc&        Third term of the Julian day number calculation
  204.   ' MODULE LEVEL
  205.   '   DECLARATIONS:  DECLARE FUNCTION Date2Day% (dat$)
  206.   '                  DECLARE FUNCTION Date2Julian& (dat$)
  207.   '                  DECLARE FUNCTION Date2Month% (dat$)
  208.   '                  DECLARE FUNCTION Date2Year% (dat$)
  209.   '
  210.     FUNCTION Date2Julian& (dat$) STATIC
  211.         month% = Date2Month%(dat$)
  212.         day% = Date2Day%(dat$)
  213.         year% = Date2Year%(dat$)
  214.         IF year% < 1583 THEN
  215.             PRINT "Date2Julian: Year is less than 1583"
  216.             SYSTEM
  217.         END IF
  218.         IF month% > 2 THEN
  219.             month% = month% - 3
  220.         ELSE
  221.             month% = month% + 9
  222.             year% = year% - 1
  223.         END IF
  224.         ta& = 146097 * (year% \ 100) \ 4
  225.         tb& = 1461& * (year% MOD 100) \ 4
  226.         tc& = (153 * month% + 2) \ 5 + day% + 1721119
  227.         Date2Julian& = ta& + tb& + tc&
  228.     END FUNCTION
  229.  
  230.   ' ************************************************
  231.   ' **  Name:          Date2Month%                **
  232.   ' **  Type:          Function                   **
  233.   ' **  Module:        CALENDAR.BAS               **
  234.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  235.   ' ************************************************
  236.   '
  237.   ' Returns the month number given a date in the
  238.   ' QuickBASIC string format MM-DD-YYYY.
  239.   '
  240.   ' EXAMPLE OF USE:  month% = Date2Month%(dat$)
  241.   ' PARAMETERS:      dat$       Date of concern
  242.   ' VARIABLES:       (none)
  243.   ' MODULE LEVEL
  244.   '   DECLARATIONS:  DECLARE FUNCTION Date2Month% (dat$)
  245.   '
  246.     FUNCTION Date2Month% (dat$) STATIC
  247.         Date2Month% = VAL(MID$(dat$, 1, 2))
  248.     END FUNCTION
  249.  
  250.   ' ************************************************
  251.   ' **  Name:          Date2Year%                 **
  252.   ' **  Type:          Function                   **
  253.   ' **  Module:        CALENDAR.BAS               **
  254.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  255.   ' ************************************************
  256.   '
  257.   ' Returns the year number given a date in the
  258.   ' QuickBASIC string format MM-DD-YYYY.
  259.   '
  260.   ' EXAMPLE OF USE:  year% = Date2Year%(dat$)
  261.   ' PARAMETERS:      dat$       Date of concern
  262.   ' VARIABLES:       (none)
  263.   ' MODULE LEVEL
  264.   '   DECLARATIONS:  DECLARE FUNCTION Date2Year% (dat$)
  265.   '
  266.     FUNCTION Date2Year% (dat$) STATIC
  267.         Date2Year% = VAL(MID$(dat$, 7))
  268.     END FUNCTION
  269.  
  270.   ' ************************************************
  271.   ' **  Name:          DayOfTheCentury%           **
  272.   ' **  Type:          Function                   **
  273.   ' **  Module:        CALENDAR.BAS               **
  274.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  275.   ' ************************************************
  276.   '
  277.   ' Returns the number of the day of the century.
  278.   '
  279.   ' EXAMPLE OF USE:  cDay& = DayOfTheCentury&(dat$)
  280.   ' PARAMETERS:      dat$       Date of concern
  281.   ' VARIABLES:       year%      Year for given date
  282.   '                  dat1$      Date for last day of previous century
  283.   ' MODULE LEVEL
  284.   '   DECLARATIONS:  DECLARE FUNCTION DayOfTheCentury& (dat$)
  285.   '
  286.     FUNCTION DayOfTheCentury& (dat$)
  287.         year% = Date2Year%(dat$)
  288.         dat1$ = MDY2Date$(12, 31, year% - (year% MOD 100) - 1)
  289.         DayOfTheCentury& = DaysBetweenDates&(dat1$, dat$)
  290.     END FUNCTION
  291.  
  292.   ' ************************************************
  293.   ' **  Name:          DayOfTheWeek$              **
  294.   ' **  Type:          Function                   **
  295.   ' **  Module:        CALENDAR.BAS               **
  296.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  297.   ' ************************************************
  298.   '
  299.   ' Returns a string stating the day of the week.
  300.   ' Input is a date expressed in the QuickBASIC string
  301.   ' format MM-DD-YYYY.
  302.   '
  303.   ' EXAMPLE OF USE:  PRINT "The day of the week is "; DayOfTheWeek$(dat$)
  304.   ' PARAMETERS:      dat$       Date of concern
  305.   ' VARIABLES:       (none)
  306.   ' MODULE LEVEL
  307.   '   DECLARATIONS:  DECLARE FUNCTION DayOfTheWeek$ (dat$)
  308.   '
  309.     FUNCTION DayOfTheWeek$ (dat$) STATIC
  310.         SELECT CASE Date2Julian&(dat$) MOD 7
  311.         CASE 0
  312.             DayOfTheWeek$ = "Monday"
  313.         CASE 1
  314.             DayOfTheWeek$ = "Tuesday"
  315.         CASE 2
  316.             DayOfTheWeek$ = "Wednesday"
  317.         CASE 3
  318.             DayOfTheWeek$ = "Thursday"
  319.         CASE 4
  320.             DayOfTheWeek$ = "Friday"
  321.         CASE 5
  322.             DayOfTheWeek$ = "Saturday"
  323.         CASE 6
  324.             DayOfTheWeek$ = "Sunday"
  325.         END SELECT
  326.     END FUNCTION
  327.  
  328.   ' ************************************************
  329.   ' **  Name:          DayOfTheYear%              **
  330.   ' **  Type:          Function                   **
  331.   ' **  Module:        CALENDAR.BAS               **
  332.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  333.   ' ************************************************
  334.   '
  335.   ' Returns the number of the day of the year (1-366).
  336.   '
  337.   ' EXAMPLE OF USE:  PRINT "The day of the year is"; DayOfTheYear%(dat$)
  338.   ' PARAMETERS:      dat$       Date of concern
  339.   ' VARIABLES:       dat1$      Date of last day of previous year
  340.   ' MODULE LEVEL
  341.   '   DECLARATIONS:  DECLARE FUNCTION DayOfTheYear% (dat$)
  342.   '
  343.     FUNCTION DayOfTheYear% (dat$) STATIC
  344.         dat1$ = MDY2Date$(12, 31, Date2Year%(dat$) - 1)
  345.         DayOfTheYear% = DaysBetweenDates&(dat1$, dat$)
  346.     END FUNCTION
  347.  
  348.   ' ************************************************
  349.   ' **  Name:          DaysBetweenDates&          **
  350.   ' **  Type:          Function                   **
  351.   ' **  Module:        CALENDAR.BAS               **
  352.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  353.   ' ************************************************
  354.   '
  355.   ' Returns the number of days between any two dates.
  356.   '
  357.   ' EXAMPLE OF USE:  days& = DaysBetweenDates&(dat1$, dat2$)
  358.   ' PARAMETERS:      dat1$      First date
  359.   '                  dat2$      Second date
  360.   ' VARIABLES:       (none)
  361.   ' MODULE LEVEL
  362.   '   DECLARATIONS:  DECLARE FUNCTION DaysBetweenDates& (dat1$, dat2$)
  363.   '
  364.     FUNCTION DaysBetweenDates& (dat1$, dat2$) STATIC
  365.         DaysBetweenDates& = ABS(Date2Julian&(dat1$) - Date2Julian&(dat2$))
  366.     END FUNCTION
  367.  
  368.   ' ************************************************
  369.   ' **  Name:          HMS2Time$                  **
  370.   ' **  Type:          Function                   **
  371.   ' **  Module:        CALENDAR.BAS               **
  372.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  373.   ' ************************************************
  374.   '
  375.   ' Returns the time in the QuickBASIC string format
  376.   ' HH:MM:SS given hour%, minute%, and second%.
  377.   '
  378.   ' EXAMPLE OF USE:  PRINT HMS2Time$(hour%, minute%, second%)
  379.   ' PARAMETERS:      hour%      Hour number
  380.   '                  minute%    Minutes number
  381.   '                  second%    Seconds number
  382.   ' VARIABLES:       t$         Workspace for building the time string
  383.   ' MODULE LEVEL
  384.   '   DECLARATIONS:  DECLARE FUNCTION HMS2Time$ (hour%, minute%, second%)
  385.   '
  386.     FUNCTION HMS2Time$ (hour%, minute%, second%) STATIC
  387.         t$ = RIGHT$("0" + MID$(STR$(hour%), 2), 2) + ":"
  388.         t$ = t$ + RIGHT$("0" + MID$(STR$(minute%), 2), 2) + ":"
  389.         HMS2Time$ = t$ + RIGHT$("0" + MID$(STR$(second%), 2), 2)
  390.     END FUNCTION
  391.  
  392.   ' ************************************************
  393.   ' **  Name:          Julian2Date$               **
  394.   ' **  Type:          Function                   **
  395.   ' **  Module:        CALENDAR.BAS               **
  396.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  397.   ' ************************************************
  398.   '
  399.   ' Returns a date in the QuickBASIC string format
  400.   ' MM-DD-YYYY as calculated from a Julian day number.
  401.   '
  402.   ' EXAMPLE OF USE:
  403.   '        PRINT "Date for the given Julian number is ";Julian2Date$(j&)
  404.   ' PARAMETERS:      j&         Julian day number
  405.   ' VARIABLES:       x&         Temporary calculation variable
  406.   '                  y&         Temporary calculation variable
  407.   '                  d&         Day number in long integer form
  408.   '                  m&         Month number before adjustment
  409.   '                  month%     Month number
  410.   '                  year%      Year number
  411.   '                  day%       Day number
  412.   ' MODULE LEVEL
  413.   '   DECLARATIONS:  DECLARE FUNCTION Julian2Date$ (julian&)
  414.   '
  415.     FUNCTION Julian2Date$ (julian&) STATIC
  416.       
  417.         x& = 4 * julian& - 6884477
  418.         y& = (x& \ 146097) * 100
  419.         d& = (x& MOD 146097) \ 4
  420.       
  421.         x& = 4 * d& + 3
  422.         y& = (x& \ 1461) + y&
  423.         d& = (x& MOD 1461) \ 4 + 1
  424.       
  425.         x& = 5 * d& - 3
  426.         m& = x& \ 153 + 1
  427.         d& = (x& MOD 153) \ 5 + 1
  428.       
  429.         IF m& < 11 THEN
  430.             month% = m& + 2
  431.         ELSE
  432.             month% = m& - 10
  433.         END IF
  434.         day% = d&
  435.         year% = y& + m& \ 11
  436.       
  437.         dat$ = MDY2Date$(month%, day%, year%)
  438.         Julian2Date$ = dat$
  439.     END FUNCTION
  440.  
  441.   ' ************************************************
  442.   ' **  Name:          MDY2Date$                  **
  443.   ' **  Type:          Function                   **
  444.   ' **  Module:        CALENDAR.BAS               **
  445.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  446.   ' ************************************************
  447.   '
  448.   ' Converts month%, day%, and year% to a date string
  449.   ' in the QuickBASIC string format MM-DD-YYYY.
  450.   '
  451.   ' EXAMPLE OF USE:  dat$ = MDY2Date$(month%, day%, year%)
  452.   ' PARAMETERS:      month%     Month for the date
  453.   '                  day%       Day of the month
  454.   '                  year%      Year number
  455.   ' VARIABLES:       y$         Temporary year string
  456.   '                  m$         Temporary month string
  457.   '                  d$         Temporary day string
  458.   ' MODULE LEVEL
  459.   '   DECLARATIONS:  DECLARE FUNCTION MDY2Date$ (month%, day%, year%)
  460.   '
  461.     FUNCTION MDY2Date$ (month%, day%, year%) STATIC
  462.         y$ = RIGHT$("000" + MID$(STR$(year%), 2), 4)
  463.         m$ = RIGHT$("0" + MID$(STR$(month%), 2), 2)
  464.         d$ = RIGHT$("0" + MID$(STR$(day%), 2), 2)
  465.         MDY2Date$ = m$ + "-" + d$ + "-" + y$
  466.     END FUNCTION
  467.  
  468.   ' ************************************************
  469.   ' **  Name:          MonthName$                 **
  470.   ' **  Type:          Function                   **
  471.   ' **  Module:        CALENDAR.BAS               **
  472.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  473.   ' ************************************************
  474.   '
  475.   ' Returns a string stating the month as indicated
  476.   ' in dat$ (QuickBASIC string format MM-DD-YYYY).
  477.   '
  478.   ' EXAMPLE OF USE:  PRINT MonthName$(dat$)
  479.   ' PARAMETERS:      dat$       Date of concern
  480.   ' VARIABLES:       (none)
  481.   ' MODULE LEVEL
  482.   '   DECLARATIONS:  DECLARE FUNCTION MonthName$ (dat$)
  483.   '
  484.     FUNCTION MonthName$ (dat$) STATIC
  485.       
  486.         IF LEN(dat$) <> 10 THEN
  487.             dat$ = "MM-DD-YYYY"
  488.         END IF
  489.       
  490.         SELECT CASE LEFT$(dat$, 2)
  491.         CASE "01"
  492.             MonthName$ = "January"
  493.         CASE "02"
  494.             MonthName$ = "February"
  495.         CASE "03"
  496.             MonthName$ = "March"
  497.         CASE "04"
  498.             MonthName$ = "April"
  499.         CASE "05"
  500.             MonthName$ = "May"
  501.         CASE "06"
  502.             MonthName$ = "June"
  503.         CASE "07"
  504.             MonthName$ = "July"
  505.         CASE "08"
  506.             MonthName$ = "August"
  507.         CASE "09"
  508.             MonthName$ = "September"
  509.         CASE "10"
  510.             MonthName$ = "October"
  511.         CASE "11"
  512.             MonthName$ = "November"
  513.         CASE "12"
  514.             MonthName$ = "December"
  515.         CASE ELSE
  516.             MonthName$ = "?MonthName?"
  517.         END SELECT
  518.       
  519.     END FUNCTION
  520.  
  521.   ' ************************************************
  522.   ' **  Name:          OneMonthCalendar           **
  523.   ' **  Type:          Subprogram                 **
  524.   ' **  Module:        CALENDAR.BAS               **
  525.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  526.   ' ************************************************
  527.   '
  528.   ' Prints a small, one-month calendar at the row%
  529.   ' and col% indicated.
  530.   '
  531.   ' EXAMPLE OF USE:  OneMonthCalendar dat$, row%, col%
  532.   ' PARAMETERS:      dat$       Date of concern
  533.   '                  row%       Screen row for upper left corner of calendar
  534.   '                  col%       Screen column for upper left corner of calendar
  535.   ' VARIABLES:       mname$     Name of given month
  536.   '                  month%     Month number
  537.   '                  day%       Day number
  538.   '                  year%      Year number
  539.   '                  dat1$      Date for first of the given month
  540.   '                  j&         Julian day number for each day of the month
  541.   '                  heading$   Title line for calendar
  542.   '                  wa%        Day of the week for each day of the month
  543.   '                  rowloc%    Row for printing each day number
  544.   ' MODULE LEVEL
  545.   '   DECLARATIONS:  DECLARE SUB OneMonthCalendar (dat$, row%, col%)
  546.   '
  547.     SUB OneMonthCalendar (dat$, row%, col%) STATIC
  548.         mname$ = MonthName$(dat$)
  549.         LOCATE row%, col% + 12 - LEN(mname$) \ 2
  550.         PRINT mname$; ","; Date2Year%(dat$)
  551.         month% = Date2Month%(dat$)
  552.         day% = 1
  553.         year% = Date2Year%(dat$)
  554.         dat1$ = MDY2Date$(month%, day%, year%)
  555.         j& = Date2Julian&(dat1$)
  556.         heading$ = " Sun Mon Tue Wed Thu Fri Sat"
  557.         wa% = INSTR(heading$, LEFT$(DayOfTheWeek$(dat1$), 3)) \ 4
  558.         LOCATE row% + 1, col%
  559.         PRINT heading$
  560.         rowloc% = row% + 2
  561.         LOCATE rowloc%, col% + 4 * wa%
  562.         DO
  563.             PRINT USING "####"; day%;
  564.             IF wa% = 6 THEN
  565.                 rowloc% = rowloc% + 1
  566.                 LOCATE rowloc%, col%
  567.             END IF
  568.             wa% = (wa% + 1) MOD 7
  569.             j& = j& + 1
  570.             day% = Date2Day%(Julian2Date$(j&))
  571.         LOOP UNTIL day% = 1
  572.         PRINT
  573.     END SUB
  574.  
  575.   ' ************************************************
  576.   ' **  Name:          Second2Date$               **
  577.   ' **  Type:          Function                   **
  578.   ' **  Module:        CALENDAR.BAS               **
  579.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  580.   ' ************************************************
  581.   '
  582.   ' Returns the date in the QuickBASIC string format
  583.   ' MM-DD-YYYY given a number of seconds since the
  584.   ' last second of 1979.  Use Second2Time$ to find
  585.   ' the time of day at the indicated second.
  586.   '
  587.   ' EXAMPLE OF USE:  dat$ = Second2Date$(second&)
  588.   ' PARAMETERS:      second&    Number of seconds since the last second of 1979
  589.   ' VARIABLES:       days&      Julian day number of the date
  590.   ' MODULE LEVEL
  591.   '   DECLARATIONS:  DECLARE FUNCTION Second2Date$ (second&)
  592.   '
  593.     FUNCTION Second2Date$ (second&) STATIC
  594.         days& = second& \ 86400 + 2444240
  595.         Second2Date$ = Julian2Date$(days&)
  596.     END FUNCTION
  597.  
  598.   ' ************************************************
  599.   ' **  Name:          Second2Time$               **
  600.   ' **  Type:          Function                   **
  601.   ' **  Module:        CALENDAR.BAS               **
  602.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  603.   ' ************************************************
  604.   '
  605.   ' Returns the time in the QuickBASIC string format
  606.   ' HH:MM:SS given the number of seconds since the
  607.   ' last second of 1979.  Use Second2Date$ to find
  608.   ' the date at the indicated second.
  609.   '
  610.   ' EXAMPLE OF USE:  tim$ = Second2Time$(second&)
  611.   ' PARAMETERS:      second&    Number of seconds since the last second of 1979
  612.   ' VARIABLES:       time&      Number of seconds in current day
  613.   '                  second%    Current second of the minute
  614.   '                  minute%    Current minute of the hour
  615.   '                  hour%      Current hour of the day
  616.   ' MODULE LEVEL
  617.   '   DECLARATIONS:  DECLARE FUNCTION Second2Time$ (second&)
  618.   '
  619.     FUNCTION Second2Time$ (second&) STATIC
  620.         IF second& > 0 THEN
  621.             time& = second& MOD 86400
  622.             second% = time& MOD 60
  623.             time& = time& \ 60
  624.             minute% = time& MOD 60
  625.             hour% = time& \ 60
  626.             Second2Time$ = HMS2Time$(hour%, minute%, second%)
  627.         ELSE
  628.             Second2Time$ = "HH:MM:SS"
  629.         END IF
  630.     END FUNCTION
  631.  
  632.   ' ************************************************
  633.   ' **  Name:          Time2Hour%                 **
  634.   ' **  Type:          Function                   **
  635.   ' **  Module:        CALENDAR.BAS               **
  636.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  637.   ' ************************************************
  638.   '
  639.   ' Returns the hour number as indicated in a time
  640.   ' string in the format HH:MM:SS.
  641.   '
  642.   ' EXAMPLE OF USE:  hour% = Time2Hour%(tim$)
  643.   ' PARAMETERS:      tim$       Time of concern
  644.   ' VARIABLES:       (none)
  645.   ' MODULE LEVEL
  646.   '   DECLARATIONS:  DECLARE FUNCTION Time2Hour% (tim$)
  647.   '
  648.     FUNCTION Time2Hour% (tim$) STATIC
  649.         Time2Hour% = VAL(LEFT$(tim$, 2))
  650.     END FUNCTION
  651.  
  652.   ' ************************************************
  653.   ' **  Name:          Time2Minute%               **
  654.   ' **  Type:          Function                   **
  655.   ' **  Module:        CALENDAR.BAS               **
  656.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  657.   ' ************************************************
  658.   '
  659.   ' Returns the minute number as indicated in a time
  660.   ' string in the format HH:MM:SS.
  661.   '
  662.   ' EXAMPLE OF USE:  minute% = Time2Minute%(tim$)
  663.   ' PARAMETERS:      tim$       Time of concern
  664.   ' VARIABLES:       (none)
  665.   ' MODULE LEVEL
  666.   '   DECLARATIONS:  DECLARE FUNCTION Time2Minute% (tim$)
  667.   '
  668.     FUNCTION Time2Minute% (tim$) STATIC
  669.         Time2Minute% = VAL(MID$(tim$, 4, 2))
  670.     END FUNCTION
  671.  
  672.   ' ************************************************
  673.   ' **  Name:          Time2Second%               **
  674.   ' **  Type:          Function                   **
  675.   ' **  Module:        CALENDAR.BAS               **
  676.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  677.   ' ************************************************
  678.   '
  679.   ' Returns the second number as indicated in a time
  680.   ' string in the format HH:MM:SS.
  681.   '
  682.   ' EXAMPLE OF USE:  second% = Time2Second%(tim$)
  683.   ' PARAMETERS:      tim$       Time of concern
  684.   ' VARIABLES:       (none)
  685.   ' MODULE LEVEL
  686.   '   DECLARATIONS:  DECLARE FUNCTION Time2Second% (tim$)
  687.   '
  688.     FUNCTION Time2Second% (tim$) STATIC
  689.         Time2Second% = VAL(MID$(tim$, 7))
  690.     END FUNCTION
  691.  
  692.   ' ************************************************
  693.   ' **  Name:          TimeDate2Second&           **
  694.   ' **  Type:          Function                   **
  695.   ' **  Module:        CALENDAR.BAS               **
  696.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  697.   ' ************************************************
  698.   '
  699.   ' Returns the number of seconds since the last
  700.   ' second of 1979.  If the date is not in the years
  701.   ' 1980 to 2047, an error message is output.
  702.   '
  703.   ' EXAMPLE OF USE:  sec& = TimeDate2Second&(tim$, dat$)
  704.   ' PARAMETERS:      tim$       Time of concern
  705.   '                  dat$       Date of concern
  706.   ' VARIABLES:       days&      Days since 12-31-1979
  707.   '                  hour%      Hour of the day
  708.   '                  minute%    Minute of the hour
  709.   '                  second%    Second of the minute
  710.   '                  secs&      Working number of total seconds
  711.   ' MODULE LEVEL
  712.   '   DECLARATIONS:  DECLARE FUNCTION TimeDate2Second& (tim$, dat$)
  713.   '
  714.     FUNCTION TimeDate2Second& (tim$, dat$) STATIC
  715.         days& = Date2Julian&(dat$) - 2444240
  716.         hour% = VAL(LEFT$(tim$, 2))
  717.         minute% = VAL(MID$(tim$, 4, 2))
  718.         second% = VAL(RIGHT$(tim$, 2))
  719.         secs& = CLNG(hour%) * 3600 + minute% * 60 + second%
  720.         IF days& >= 0 AND days& < 24857 THEN
  721.             TimeDate2Second& = days& * 86400 + secs&
  722.         ELSE
  723.             PRINT "TimeDate2Second: Not in range 1980 to 2047"
  724.             SYSTEM
  725.         END IF
  726.     END FUNCTION
  727.  
  728.