That one is very easy actually.
The trick is done by seperating the day,mont and year values. (use split(datestring,"/") for that.
Then add 100 to the value of the day (the 5th becomes 105) then convert it to string ( cStr(dayvalue) ) and then take the left two characters of the string making the dayvalue "05"
Do the same with month and year
example:
datestr=right(cStr(day(date)+100)),2) & "/" & right(cStr(month(date)+100)),2) & "/" & year(date)
In the above example you can replace the day(date) and month(date) with the array values from the split if the date is supplied as a text string.
Kenneth Tan
Webdeveloper
Simac ICT
The Netherlands