Mar 18, 2004 #1 charanch Programmer Jan 3, 2004 55 US Hi there, How would you determine the current date plus five days in advance? Like today is date() and I need date() + 5 days? Thank you very much.
Hi there, How would you determine the current date plus five days in advance? Like today is date() and I need date() + 5 days? Thank you very much.
Mar 18, 2004 1 #2 onpnt Programmer Dec 11, 2001 7,778 US try DateAdd DateAdd() Function ___________________________________________________________________ http://www.onpnt.comThe answer to your ??'s may be closer then you think. Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page Upvote 0 Downvote
try DateAdd DateAdd() Function ___________________________________________________________________ http://www.onpnt.comThe answer to your ??'s may be closer then you think. Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page
Mar 18, 2004 Thread starter #3 charanch Programmer Jan 3, 2004 55 US Thank you very much. There are so many things to know about functions. I didn't even know where to start and that works perfectly. Thank you again. Upvote 0 Downvote
Thank you very much. There are so many things to know about functions. I didn't even know where to start and that works perfectly. Thank you again.
Mar 18, 2004 #4 onpnt Programmer Dec 11, 2001 7,778 US Glad to help out w3schools is a great palce to start getting some of them down. Have fun!! ___________________________________________________________________ http://www.onpnt.comThe answer to your ??'s may be closer then you think. Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page Upvote 0 Downvote
Glad to help out w3schools is a great palce to start getting some of them down. Have fun!! ___________________________________________________________________ http://www.onpnt.comThe answer to your ??'s may be closer then you think. Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page
Mar 18, 2004 #5 ralphtrent Programmer Jun 2, 2003 958 US deveguru.com is another great place to learn functions and objects. Upvote 0 Downvote
Mar 22, 2004 Thread starter #6 charanch Programmer Jan 3, 2004 55 US Thank you very much for the suggestions. I also found a site, aspbootcamp.com that has a lot of good info in a nutshell. Thanks again. Upvote 0 Downvote
Thank you very much for the suggestions. I also found a site, aspbootcamp.com that has a lot of good info in a nutshell. Thanks again.
Mar 22, 2004 #7 Genimuse Programmer May 15, 2003 1,797 US Just a note that if you're simply adding days, basic math does the trick: Code: Date() + 5 is 5 days from today. DateAdd() isn't necessary in this case if you don't want to use it. Upvote 0 Downvote
Just a note that if you're simply adding days, basic math does the trick: Code: Date() + 5 is 5 days from today. DateAdd() isn't necessary in this case if you don't want to use it.