Related to this old post..
http://www.mjtnet.com/forum/viewtopic.php?p=21137#21137
Need to send an application a date in this format:
2010-06-30. So, yyyy-mm-dd. Today, I will need to send 2010-06-30, but the vbscript I am using sends 2010-07-00. Very literally today -1..
The code works perfectly except at the turn of the month.
Here's what I use and assistance is appreciated.
Code: Select all
VBSTART
VBEND
VBEval>Right("0" & DatePart("m", Now()),2) & "/" & Right("0" & DatePart("d", Now())-1,2) & "/" & DatePart("yyyy",Now()),date
separate>date,/,parts
message>%parts_3%-%parts_1%-%parts_2%