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 6875495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:19:51+00:00 2026-05-27T04:19:51+00:00

I have a time value represented in SYSTEMTIME, i want to add/subtract 1 hour

  • 0

I have a time value represented in SYSTEMTIME, i want to add/subtract 1 hour from it and get the newly obtained SYSTEMTIME. I want the conversion should take care of the date change on addition/subtraction or month change or e1 year change .

Can someone help me with this if there is some windows api which does arithmetic on SYSTEMTIME

  • 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-27T04:19:56+00:00Added an answer on May 27, 2026 at 4:19 am

    If you’re using C# (or VB.NET, or ASP.NET) you can use

    DateTime dt = DateTime.Now.AddHours(1);
    

    You can use negative numbers to subtract:

    DateTime dt = DateTime.Now.AddHours(-1);
    

    EDITED:
    I extract an asnwer from this post

    They suggest converting SYSTEMTIME to FILETIME, which is a number of
    ticks since an epoch. You can then add the required number of ‘ticks’
    (i.e. 100ns intervals) to indicate your time, and convert back to
    SYSTEMTIME.

    The ULARGE_INTEGER struct is a union with a QuadPart member, which is
    a 64bit number, that can be directly added to (on recent hardware).

    SYSTEMTIME add( SYSTEMTIME s, double seconds ) {
    
        FILETIME f;
        SystemTimeToFileTime( &s, &f );
    
        ULARGE_INTEGER u  ; 
        memcpy( &u  , &f , sizeof( u ) );
    
        const double c_dSecondsPer100nsInterval = 100. * 1.E-9;
        u.QuadPart += seconds / c_dSecondsPer100nsInterval; 
    
        memcpy( &f, &u, sizeof( f ) );
    
        FileTimeToSystemTime( &f, &s );
        return s;
     }
    

    If you want to add an hour use SYSTEMTIME s2 = add(s1, 60*60)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the value of the epoch time like say 123456789, now I want
I have a String that represents a time value and is stored in the
I have a time_select in which I am trying to set a time value
Let's say I have the following table: Value Time 0 15/06/2012 8:03:43 PM 1
I have a certain value of date and time say 28-3-2012(date) - 10:36:45(time) .
I have an integer variable ( time ) in one view controller whose value
I have an excel csv with a date/time column and a value associated with
I have an XML file that reads like this <abc> <ab>value</ab> <aa>time</aa> <ac>money</ac> </abc>
In my Postgresql database, I have a timestamp without time zone with this value
I have some date/time cells in Excel and I would like to add a

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.