ISDBSongData::Bookmark: 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=== | ||
Database Table, Field Name and Tracklist Column not confirmed | |||
{{Property Summary|SongData|Bookmark|String|Songs|PlaybackPos|Text|||}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Revision as of 13:11, 11 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Bookmark As Empty
Property description
Database Table, Field Name and Tracklist Column not confirmed
Scripting Object | SDBSongData |
Value Name | Bookmark |
Value Type | String |
Database Table | Songs |
Field Name | PlaybackPos |
Field Type | Text |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringBookmark = objSongData.Bookmark SDB.MessageBox "Value = '" & StringBookmark & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Bookmark = StringNewBookmark 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub