I currently have a script that takes the date of the system and adds 1 day to it, but the end result is not what I need. My date is formatted as mm/dd/yyyy but I need it to append a 0 to the first value of the month if its Jan-Sept. Is there a format function that will allow for this formatting. this will be a login script so I don't want it to be a long drawn out procedure. Thanks.
strTest = DateAdd("d", 1, DATE)
strTest = DateAdd("d", 1, DATE)