Ok, my program is done. I just need to resolve one last thing. I have a lot of my files named like this:
"Vaughn, Stevie Ray - Life By The Drop"
I have code that splits up the Artist and song already. So I wrote code to check for a comma in the Artist string. If the comma exists, It changes the Artist string from:
"Vaughn, Stevie Ray" TO "Stevie Ray Vaughn"
Problem is it looks like this: "Stevie Ray___________Vaughn"
How can I fix this? It should read: "Stevie Ray Vaughn"
Here's my code:VB Code:
If InStr(artist, ",") > 0 Then temp2 = Split(artist, ",") artist = temp2(1) & temp2(0) End If




Reply With Quote