ISDBSongData::DateAdded: 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|DateAdded|Date|Songs|DateAdded|Real|Added|2/04/2008 4:36 PM|}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Latest revision as of 01:19, 12 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let DateAdded As Date
Property description
Scripting Object | SDBSongData |
Value Name | DateAdded |
Value Type | Date |
Database Table | Songs |
Field Name | DateAdded |
Field Type | Real |
Tracklist Column | Added |
Example Data | 2/04/2008 4:36 PM |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) DateDateAdded = objSongData.DateAdded SDB.MessageBox "Value = '" & DateDateAdded & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.DateAdded = DateNewDateAdded 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub