ISDBSongData::Bookmark: Difference between revisions
Jump to navigation
Jump to search
MoDementia (talk | contribs) No edit summary |
MoDementia (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
===Property description=== | ===Property description=== | ||
Database Table, Field Name and Tracklist Column not confirmed | Database Table, Field Name and Tracklist Column not confirmed | ||
{{Property Summary|SongData|Bookmark| | {{Property Summary|SongData|Bookmark|Value|Songs|PlaybackPos|Integer|||}} | ||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Revision as of 13:12, 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 | Value |
Database Table | Songs |
Field Name | PlaybackPos |
Field Type | Integer |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValueBookmark = objSongData.Bookmark SDB.MessageBox "Value = '" & ValueBookmark & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Bookmark = ValueNewBookmark 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub