If you discard the weekday name from your first string, you can use CDate to convert it to a Date/Time value. Here is an Immediate window session ...
DateString1 = "Wednesday, February 12, 2013 12:47 AM"
? Mid(DateString1, InStr(DateString1, " "))
February 12, 2013 12:47 AM
Date1 = CDate(Mid(DateString1, InStr(DateString1, " ")))
? Date1
2/12/2013 12:47:00 AM
Although the substring I gave CDate started with a space, CDate doesn't care.
Your second string appears suitable for CDate as is.
DateString2 = "11/15/2012 4:03:32 PM"
Date2 = CDate(DateString2)
? Date2
11/15/2012 4:03:32 PM
Once you have the two Date/Time values, you can compute your cycle time. I'm not sure what you have in mind there, but here are some alternatives for you to consider.
? Date1 - Date2
88.3635185185121
? DateDiff("d", Date2, Date1)
89
? DateDiff("h", Date2, Date1)
2120
cdate(Mid("Wednesday, February 12, 2013 12:47 AM",Instr("Wednesday, February 12, 2013 12:47 AM",",")+1)), but I am sure you have field names. – Remou Feb 20 at 19:44