ISDBSongData::AlbumArtistName: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
MoDementia (talk | contribs) No edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
===Property description=== | ===Property description=== | ||
{{Property Summary|SongData|AlbumArtistName|String|Songs|AlbumArtist|Text|Album Artist|ABBA|}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Latest revision as of 04:56, 11 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let AlbumArtistName As String
Property description
Scripting Object | SDBSongData |
Value Name | AlbumArtistName |
Value Type | String |
Database Table | Songs |
Field Name | AlbumArtist |
Field Type | Text |
Tracklist Column | Album Artist |
Example Data | ABBA |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringAlbumArtistName = objSongData.AlbumArtistName SDB.MessageBox "Value = '" & StringAlbumArtistName & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.AlbumArtistName = StringNewAlbumArtistName 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub