ISDBSongData::TotalSamples: 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|TotalSamples|Value|Songs|TotalSamples|Integer||-1|}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Latest revision as of 01:51, 8 May 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let TotalSamples As Empty
Property description
Scripting Object | SDBSongData |
Value Name | TotalSamples |
Value Type | Value |
Database Table | Songs |
Field Name | TotalSamples |
Field Type | Integer |
Example Data | -1 |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValueTotalSamples = objSongData.TotalSamples SDB.MessageBox "Value = '" & ValueTotalSamples & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.TotalSamples = ValueNewTotalSamples 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub