You may try something like this :
Dim sTagIdent As String * 3
Dim sTitle As String * 30
Dim sArtist As String * 30
Dim sAlbum As String * 30
Dim sYear As String * 4
Dim sComment As String * 30
Open "\path\to\file.mp3" For Binary As #1
Seek #1, LOF(1) - 127
Get #1, , sTagIdent
If sTagIdent = "TAG" Then
Get #1, , sTitle
Get #1, , sArtist
Get #1, , sAlbum
Get #1, , sYear
Get #1, , sComment
End If
Close #1
Hope This Help, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.