hi

how can i subtract a date from other.

Recommended Answers

All 3 Replies

hi sreevidya.........


could u please tell us more abt wat ur expecting?

private void button1_Click(object sender, EventArgs e)
    {
      DateTime dtToday = DateTime.Today;
      DateTime dtFuture = DateTime.Today.AddDays(180);

      TimeSpan difference = dtFuture.Subtract(dtToday);
    }

Hi,

To subtract a date from a current date the code is as follows

Dim xdate As Date
xdate = Now.AddDays(-10)

Thanks

<URLs SNIPPED>

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.