Assuming that format is the same short date format set in Windows I would use Dateserial with a combination of mid right and left functions
Dateserial format is
Dateserial(year,month,day)
So
Dateserial(left(stringdate,4),mid(stringdate,5,2),right(stringdate,2))
Others prefer to use CDate along with those functions
Brian