Format() or String.Format() doesn't seem to format any thing.
Example:
Basically Format returns whatever is in quotes for the style and String.Format returns whatever is in the string you were trying to format. WTF?
-I hate Microsoft!
-Forever and always forward.
Example:
If curString = "12122006"
Format(curString, "M/d/yyyy") would return M/d/yyyy
String.Format(curString, "M/d/yyyy") would return 12122006
Basically Format returns whatever is in quotes for the style and String.Format returns whatever is in the string you were trying to format. WTF?
-I hate Microsoft!
-Forever and always forward.