Well as long as the format is going to be set, you can just use string functions to convert the characters, like so...
'For the Date...
CDate(Left([ID], 2) & "/" & mid([ID], 3,2) & "/" & mid([ID],5,2))
'For the Time...
CDate(mid([ID], 7,2) & ":" & Right([ID], 2))
That should convert the...