Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7057919
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:03:03+00:00 2026-05-28T04:03:03+00:00

Using Delphi, I need a function to evaluate the current date and see if

  • 0

Using Delphi, I need a function to evaluate the current date and see if it’s, for example, the Third Sunday of the month, etc.

In pseudocode:

function IsFirst(const CurrentDateTime: TDateTime; const Day: Word): Boolean;
/// Day can be 1-7 (monday to sunday)
begin
  Result:= ??
end;

Another function would be needed to calculate the Second, Third, Forth and Last of the month. DateUtils seems to have nothing like that. Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T04:03:04+00:00Added an answer on May 28, 2026 at 4:03 am

    This function is what you need:

    function IsFirst(const DateTime: TDateTime; const Day: Word): Boolean;
    begin
      Result := (DayOfTheWeek(DateTime)=Day) and 
        InRange(DayOfTheMonth(DateTime), 1, 7);
    end;
    

    The equivalent function for the second occurrence is:

    function IsSecond(const DateTime: TDateTime; const Day: Word): Boolean;
    begin
      Result := (DayOfTheWeek(DateTime)=Day) and 
        InRange(DayOfTheMonth(DateTime), 8, 14);
    end;
    

    I’m sure you can fill out the details for third, fourth and fifth. You may prefer to write a single general function like this:

    function IsNth(const DateTime: TDateTime; const Day: Word; 
      const N: Integer): Boolean;
    var
      FirstDayOfWeek, LastDayOfWeek: Integer;
    begin
      LastDayOfWeek := N*7;
      FirstDayOfWeek = LastDayOfWeek-6;
      Result := (DayOfTheWeek(DateTime)=Day) and 
        InRange(DayOfTheMonth(DateTime), FirstDayOfWeek, LastDayOfWeek);
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Delphi and need to get the current Windows DNS server IP address
I'm using Delphi 2007. I need write a FormatDateTime function that always return 01/01/
I need to compress multiple files into a single archive using Delphi. I'd prefer
I need to read from and write to Excel spreadsheets using Delphi 2010. Nothing
I have a Windows CGI created with Delphi 2007 using CGIExpert that I need
In external (Delphi-created) DLL I've got the following function that I need to call
using GLScene in delphi I need to find the intersection between an object (a
I know that I can check the current state of Delphi's switch directives using
How do I strip Quotes from a string using Delphi? Ex. I need to
I am using Delphi 2010 and I have a need to be able to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.