Nov 12, 2000 #1 EscapeUK Programmer Joined Jul 7, 2000 Messages 438 Location GB I have a text box that displays the date and time, How to I add two hours on to the date. Sometimes I also need to add a day
I have a text box that displays the date and time, How to I add two hours on to the date. Sometimes I also need to add a day
Nov 12, 2000 #2 31415926 Technical User Joined Apr 24, 2003 Messages 3 Location SE USe DateAdd function dim d as date d=DateAdd("h",2,date()) and that's all Sage Upvote 0 Downvote