ISDBSongData::Publisher: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
MoDementia (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
===Property description=== | ===Property description=== | ||
{{Property Summary|SongData|Publisher|String|Songs|Publisher|Text|(Details) Publisher|BMG|}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Latest revision as of 01:18, 8 May 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Publisher As String
Property description
Scripting Object | SDBSongData |
Value Name | Publisher |
Value Type | String |
Database Table | Songs |
Field Name | Publisher |
Field Type | Text |
Tracklist Column | (Details) Publisher |
Example Data | BMG |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringPublisher = objSongData.Publisher SDB.MessageBox "Value = '" & StringPublisher & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Publisher = StringNewPublisher 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub