Hi,
I have this program I'm writing that needs to print for instance what date it is a 100 days from now or 30 days from now. Is there a function in VB.NET that lets me do something like this?
Thanks in advance for your time.
Printable View
Hi,
I have this program I'm writing that needs to print for instance what date it is a 100 days from now or 30 days from now. Is there a function in VB.NET that lets me do something like this?
Thanks in advance for your time.
will give you a Date object that represents the date 100 days from now. See the documentation for the DateTime type for more information.Code:Date.Today.AddDays(100)
Thanks a bunch!