I would like create a program for manage my files Mp3.
I find the properties (name,title,author and comments) of the files
with (objFolder.GetDetailsOf)
example:
For Each objFolderItem In objFolder.Items
dr = dt.NewRow()
n = n + 1
dr(0) = n
For i = 0 To 33
arrHeaders(i) = objFolder.GetDetailsOf(objFolderItem,
i)
dr(i + 1) = arrHeaders(i)
Next
AxProgressBar1.Value = AxProgressBar1.Value + 1
dt.Rows.Add(dr)
Next
How is possible to modify the properties of the files ? ( comments,
title, title of album ect..ect.. )
Thanks
Marco
Norm Cook - 28 Feb 2005 12:24 GMT
http://www.id3.org/intro.html
> I would like create a program for manage my files Mp3.
>
[quoted text clipped - 20 lines]
> Thanks
> Marco