ISDBSongData::Custom3
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Custom3 As String
Property description
The Tracklist Column is configurable in Options --> Library --> Appearence
| Scripting Object | SDBSongData | 
| Value Name | Custom3 | 
| Value Type | String | 
| Database Table | Songs | 
| Field Name | Custom3 | 
| Field Type | Text | 
| Tracklist Column | Custom 3 | 
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringCustom3 = objSongData.Custom3 SDB.MessageBox "Value = '" & StringCustom3 & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Custom3 = StringNewCustom3 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub