ISDBSongData::ISRC

From MediaMonkey Wiki
Jump to navigation Jump to search

CoClass SDBSongData, Interface ISDBSongData

Property Get/Let ISRC As String


Property description

ISRC
Scripting Object SDBSongData
Value Name ISRC
Value Type String
Database Table Songs
Field Name ISRC
Field Type Text
Tracklist Column Properties ISRC

Example Code

Complete script

Sub

  For iCounter = 0 to objSongList.count - 1                                    'SongLists
      Set objSongData = objSongList.Item(iCounter)
      StringISRC = objSongData.ISRC
      SDB.MessageBox "Value = '" &  StringISRC & "'", mtError, Array(mbOK)    'SDB.MessageBox
  Next
' objSongData.ISRC = StringNewISRC 'Commented Out For Safety
' objSonglist.UpdateAll              'Commented Out For Safety                 'UpdateAll
                         Updates db and writes tags (if checked in options)
End Sub