ATL Date Routines | CodeGuru

ATL Date Routines

Environment: Visual C++ 6 (SP3) When writing ATL components, one of the hardest things to overcome for Windows programmers, in my opinion, is the dependency on the MFC library. For dates and strings, MFC simplifies the programmer’s job by handling memory allocations and type conversions within its class encapsulation. However, with that simplification comes the […]

Written By
CodeGuru Staff
CodeGuru Staff
May 8, 2000
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: Visual C++ 6 (SP3)

When writing ATL components, one of the hardest things to overcome for Windows
programmers, in my opinion, is the dependency on the MFC library. For dates and strings,
MFC simplifies the programmer’s job by handling memory allocations and type
conversions within its class encapsulation. However, with that simplification comes the
price of having to distribute the MFC DLL’s with your component.

This article focuses on the issues surrounding the use of dates within an ATL
component. I developed the DateLib component as part of a project for my company and, as
such, the methods of this component are specific to my company’s requirements (I do
not have an intellectual property agreement with this company). However, the DateLib
component does illustrate how to build an ATL component that has no MFC dependencies, is
thread-safe, and will compile as either ANSI or UNICODE.

The methods within the DateLib component are as follows:

Date Formatting Routines

  • Now – Returns the current system date in a DATE variable.
  • OLE2Oracle – For a given DATE, returns a formatted string using the DD-Mon-YYYY
    representation.
  • Int2Oracle – For a given month, day, and year, returns a formatted string using
    the DD-Mon-YYYY representation.
  • Int2OLE – For a given month, day, and year, returns the date in a DATE variable.
  • OLE2String – For a given DATE, returns a formatted string using the MM/DD/YYYY representation.

Date Parsing Routines

  • ParseOracle2OLE – For a given date given in a M/D/YY format, returns the date in a DATE variable.
  • ParseOracle2String – For a given date given in a M/D/YY format, returns a
    formatted string using the MM/DD/YYYY representation.
  • ParseOracle2Oracle – For a given date given in a M/D/YY format, returns a
    formatted string using the DD-Mon-YYYY representation.

Date Math Routines

  • GetFirstDay – For a given DATE, returns the first day of the month in a DATE variable.
  • GetLastDay – For a given DATE, returns the last day of the month in a DATE variable.
  • GetNextDay – For a given DATE, returns the next day’s date in a DATE variable.
  • GetNextWeek – For a given DATE, returns the next week’s date in a DATE variable.
  • GetNextMonth – For a given DATE, returns the next month’s date in a DATE variable.
  • GetNextYear – For a given DATE, returns the next year’s date in a DATE variable.
  • GetPreviousDay – For a given DATE, returns the previous day’s date in a DATE variable.
  • GetPreviousWeek – For a given DATE, returns the previous week’s date in a DATE variable.
  • GetPreviousMonth – For a given DATE, returns the previous month’s date in a DATE variable.
  • GetPreviousYear – For a given DATE, returns the previous year’s date in a DATE variable.
Advertisement

Downloads

Download demo project – 4 Kb
Download source – 31 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.