Add time (days, hours) to current time : Date Operation « Date Time « VB.Net






Add time (days, hours) to current time

Add time (days, hours) to current time
 
Imports System.IO

Module Module1

    Sub Main()
        Dim Dt As DateTime = Now()

        Dim NewDT As DateTime = Now()

        Console.WriteLine("Current date and time: " & Dt)

        NewDT = NewDT.AddHours(5)
        Console.WriteLine("Five hours from now is: " & NewDT)

    End Sub

End Module


           
         
  








Related examples in the same category

1.Date Time SubtractionDate Time Subtraction
2.Multiply Time SpanMultiply Time Span
3.Date Time and TimeSpan DemoDate Time and TimeSpan Demo
4.Add a day, a month and a year to a Date
5.Date = #11/4/2010 1:30:00AM#
6.CDate("10/26/2010 1:32:00 PM")
7.Arithmetic Operations with Dates and Times
8.Calculate the interval between the two dates
9.Display the date using the current (en-US) culture
10.Change the current culture to fr-FR and display the date
11.Change the current culture to ja-JP and display the date
12.Allow a leading space in the date string
13.Represents an instant in time, typically expressed as a date and time of day.
14.Create Date object from String
15.Date.Now, UtcNow and Today
16.Create Date from date string with time
17.Convert Date to string with fr-FR culture
18.Adds time interval to a specified date and time, yielding a new date and time.
19.Compare the difference between two Date value with Ticks
20.Compares two Date values
21.Gets the date component from String
22.Gets the day of the month from Date
23.Gets the milliseconds component of the date represented by this instance.
24.Ticks from a Date
25.Difference between local time and UTC
26.Display the ticks-per-time-unit fields
27.Add one and half Milliseconds
28.Gets the day of the week represented by this instance.
29.Returns the number of days in the specified month and year.
30.Find out the file age
31.Returns an indication whether the specified year is a leap year.
32.whether time is based on local time, Coordinated Universal Time (UTC), or neither.
33.Reverse month and day to conform to the fr-FR culture