A
Armin Zingler
Can someone help me on a format problem. I am trying to do this..
format a string to a number. The string has a number with a colon in
the middle.
Format("1:30","00:00")
returns 00:00 instead of 01:30
How can this be done?
"00:00" is not a valid format string for formatting strings. You already
have a string.
See also:
http://msdn.microsoft.com/library/en-us/cpguide/html/cpconworkingwithbasetypes.asp
Armin