Easy formatting question.......
Ok, I'm getting an "Object Required error" on this code, I'm probably just leaving something out! :)
VB Code:
Dim strMins as string, strSecs as string, strLength as string
strMins = CMp3info.Duration \ 60
strSecs = CMp3info.Duration Mod 60
Format(strLength, "0#:0#") = strMins & ":" & strSecs
any help appreciated.
Formatting problems.......
Man I hate formatting!
I can't get the correct format. "00:00" returns exactly that, and "mm:ss"returns "12:00", and "##:##" returns " : ". I had this problem once before, but I can't remember how I resolved it.