Ok, I'm getting an "Object Required error" on this code, I'm probably just leaving something out!
VB Code:
  1. Dim strMins as string, strSecs as string, strLength as string
  2. strMins = CMp3info.Duration \ 60
  3. strSecs = CMp3info.Duration Mod 60
  4. Format(strLength, "0#:0#") = strMins & ":" & strSecs

any help appreciated.