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