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