The code below seems to be my solution to Windows Media Player overriding the embedded Album Art in mp3 files played through my Excel music application.
I remove the System and Hidden file attributes before deleting the jpg files.
The complete mp3 file path is assigned to the variable mp3Folder.
Code:
Shell ("attrib.exe -S -H " & Chr(34) & mp3Folder & "*.jpg" & Chr(34))
retval = Dir(mp3Folder & "*.jpg")
If retval <> "" Then Kill (mp3Folder & "*.jpg")
With these image files erased, the images that I have embedded into mp3 files are displayed, and not images chosen by wmp.
And finally, I opened WMP, went to Options and under Privacy, I clicked the Clear buttons and unchecked all the all the options so that wmp will not store files on my computer. This step really helped.
For now [RESOLVED]