When I was looking into the hiding of that section, I figured out a minor improvement that could be made.
As written, when I have a track that was added on, say, "5/6/2008 8:48 AM", the panel displays it as "5/6/2008 8". That's because you're trimming to 10 characters, so that leaves me with the "8" being displayed on the end.
Splitting the cursong.DateAdded value seems to work a bit better:
Code: Select all
Dim tempDateAdded : tempDateAdded = split(cursong.DateAdded)
ps = Translate("Added ")&tempDateAdded(0)
