Hello,
i use this code to get the CDDB information:
Dim CDDB As String
Dim i As Integer = 0
CDDB = BassCd.BASS_CD_GetID(drive, BASSCDId.BASS_CDID_CDDB_READ_CACHE) 'first look for cached entry
If CDDB = Nothing Then
CDDB = BassCd.BASS_CD_GetID(drive, BASSCDId.BASS_CDID_CDDB_QUERY) 'get CDDB matches
CDDB = BassCd.BASS_CD_GetID(drive, BASSCDId.BASS_CDID_CDDB_READ + i) 'get CDDB entry
End If
My problem is, i don't get any title, artist or album information.

How can i do this? I want the artist, title and album information to show in a listview.
Has someone an example source for me, please?