I have a small program that changes the name of a file to include a date chosen by the user on a calendar object. I need to customize the date object to use the "-" instead of the "/"
Any help would be helpful.
Ron.
Printable View
I have a small program that changes the name of a file to include a date chosen by the user on a calendar object. I need to customize the date object to use the "-" instead of the "/"
Any help would be helpful.
Ron.
VB Code:
Dim myString As String = "File1/1/01" Dim aString As String aString = Replace(myString, "/", "-")
You are a genius. And helpful.
I appreciate it.
Ron.:afrog: