Add a day, a month and a year to a Date : Date Operation « Date Time « VB.Net






Add a day, a month and a year to a Date

 
Imports System

Public Class MainClass

    Shared Sub Main()
        Dim dteStartDate As Date
        Dim dteChangedDate As Date

        'Start off in 2400
        dteStartDate = #2/28/2400#

        'Add a day and display the results
        dteChangedDate = dteStartDate.AddDays(1)
        System.Console.WriteLine(dteChangedDate.ToLongDateString)

        'Add some months and display the results
        dteChangedDate = dteStartDate.AddMonths(6)
        System.Console.WriteLine(dteChangedDate.ToLongDateString)

        'Subtract a year and display the results
        dteChangedDate = dteStartDate.AddYears(-1)
        System.Console.WriteLine(dteChangedDate.ToLongDateString)

    End Sub
End Class

           
         
  








Related examples in the same category

1.Add time (days, hours) to current timeAdd time (days, hours) to current time
2.Date Time SubtractionDate Time Subtraction
3.Multiply Time SpanMultiply Time Span
4.Date Time and TimeSpan DemoDate Time and TimeSpan Demo
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