I am trying to split a string from a recordset that is in the format DD/MM/YYYY
.
So basically something like:
Homework.Fields.Item("DateDue").Value.split("/")
But that doesn't work, Normally I can do:
String(Homework.Fields.Item("DateDue").Value).split("/")
But using String()
turns the value into a long thing like:
Wed Oct 26 00:00:00 UTC+0100 2011
Which I can't split.
All I need is the day DD
part.
Is there away to bump topics as I still haven't got working answer.