Robert Homes
Member
- Joined
- Nov 16, 2023
- Messages
- 11
- Programming Experience
- 5-10
I have this, but it doesn't work:
What can I do to get this or something like this working?
Also, how do you extrat the album cover or other image if there's one in the file?
VB.NET:
Imports Windows.Storage.FileProperties
Imports System.IO
Private Sub RetrieveFolderProperties(D$)
Dim File = "x:\music\Alabama\16 Biggest Hits\Mountain Music.mp3"
Dim MusicProperties = File.properties.GetMusicPropertiesAsync
Dim n = -1
n = dg.Rows.Add(1)
dg.Rows(n).Cells(0).Value = st.JustPath(D$)
dg.Rows(n).Cells(3).Value = MusicProperties.Album
dg.Rows(n).Cells(4).Value = MusicProperties.Genre
dg.Rows(n).Cells(5).Value = MusicProperties.Rating
End Sub
What can I do to get this or something like this working?
Also, how do you extrat the album cover or other image if there's one in the file?
Last edited by a moderator: