ISDBSongData::Media: 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|Media|Value|Songs|IDMedia|Integer||45|}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Latest revision as of 02:55, 22 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get Media As ISDBMedia
Property description
Scripting Object | SDBSongData |
Value Name | Media |
Value Type | Value |
Database Table | Songs |
Field Name | IDMedia |
Field Type | Integer |
Example Data | 45 |
Members | SDBMedia |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValueMedia = objSongData.Media SDB.MessageBox "Value = '" & ValueMedia & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Media = ValueNewMedia 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub