home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Programmer'…arterly (Limited Edition) / Visual_Basic_Programmers_Journal_VB-CD_Quarterly_Limited_Edition_1995.iso / sharewar / midat5 / readme.txt < prev    next >
Text File  |  1995-01-07  |  3KB  |  60 lines

  1.  
  2.  
  3.             Mitromar Date/Time Custom Control
  4.                 Version 5.00
  5.                  (dated demo version)
  6.  
  7. This control was the result of being forced to use the Format(Now) statement in
  8. Visual Basic.  Format(Now) is the slowest function in VB.  There were so many 
  9. parameter options for obtaining a date or time value.  If you use the Format(Now)
  10. statement to timestamp records, or have a need for date or time values, this control
  11. will greatly simplify your programming.  All properties are always current and
  12. available by using the property.
  13.  
  14. This custom control allows a programmer in the Visual Programming environment to
  15. obtain current date and time properties without using functions or formatting 
  16. statements, or to use the custom control as a Timer.
  17.  
  18. The programmer can obtain a date or time value using a property.
  19.  
  20. There are 18 custom properties for date and time values, three custom options properties,
  21. one status property and two events.
  22.  
  23. Custom Properties     Description
  24. AmPm            String containing "AM" or "PM"
  25. Date            String containing the current date in the MM/DD/YY format
  26. DayofMonth        The numeric day of the month (1 to 31)
  27. DayofYear        The numeric day of the year (1 to 366)
  28. DisplayFormat        The Format for FormattedTime Property. (choose from 13)
  29. FirstWeek        When to start the first week of the year. (first Sunday
  30.             or Jan 1)
  31. FormattedTime        The current date and/or time as specified in DisplayFormat
  32.             property.
  33. Hour24            The numeric hour of the day. (0 to 23)
  34. HourTwelve        The numeric hour of the day. (1 to 12)
  35. Interval        The timer interval in milliseconds. (o to deactivate the timer)
  36. LastStatus        The result of the last action by the control.
  37. Minute            The numeric minute after the hour. (0 to 59)
  38. Month            The numeric month of the year. (1 to 12)
  39. MonthAbbr        The abbreviation for the month of the year. (Jan, Feb., etc)
  40. MonthName        The complete name of the month of the year. (January, etc)
  41. Seconds            The numeric seconds after the minute. (0 to 59)
  42. Separator        The date separator character. (Slash, Dash, Period, or Bar)
  43. Time            The current time in HH:MM:SS format.
  44. TimeZone        The timezone as specified in the TZ environment variable. (PDT
  45.             as default if not set)
  46. WeekDay            The numeric day of the week. (Sunday is 1)
  47. WeekDayAbbr        The abbreviation of the day of the week. (Sun, Mon, etc)
  48. WeekDayName        The complete name of the day of the week. (Sunday, etc)
  49. WeekofYear        The numeric week of the year as started in FirstWeek property.
  50.             (0 to 53.  0 and 53 are possible due to starting day and length 
  51.             of year)
  52. Year            The complete numeric year. (1995, 1996, etc)
  53.  
  54. Custom Events        Description
  55. Change            Indicates the FormattedTime property has changed.
  56. Timer            The Interval has expired.
  57.  
  58. Custom Methods        Description
  59. Refresh            Causes all properties to be updated in addition to the control
  60.             being refreshed.