ISDBSongData::DiscNumberStr: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 5: Line 5:
Disc # field, as a string in this case, i.e. it can handle values like '1', '01', 'I', etc.
Disc # field, as a string in this case, i.e. it can handle values like '1', '01', 'I', etc.


Introduced in MediaMonkey 3.0.0.1093.
Introduced in MediaMonkey 3.0.0.1093.<br>
 
Replaces [[ISDBSongData::DiscNumber|DiscNumber]]
{{Property Summary|SongData|DiscNumberStr|String|Songs|DiscNumber|Text|Disc #||}}
[[Category:Scripting|{{PAGENAME}}]]
[[Category:Scripting|{{PAGENAME}}]]
[[Category:Automation objects|{{PAGENAME}}]]
[[Category:Automation objects|{{PAGENAME}}]]
[[Category:CoClass SDBSongData|{{PAGENAME}}]]
[[Category:CoClass SDBSongData|{{PAGENAME}}]]
[[Category:Interface ISDBSongData|{{PAGENAME}}]]
[[Category:Interface ISDBSongData|{{PAGENAME}}]]

Latest revision as of 22:23, 24 May 2008

CoClass SDBSongData, Interface ISDBSongData

Property Get/Let DiscNumberStr As String


Property description

Disc # field, as a string in this case, i.e. it can handle values like '1', '01', 'I', etc.

Introduced in MediaMonkey 3.0.0.1093.
Replaces DiscNumber

DiscNumberStr
Scripting Object SDBSongData
Value Name DiscNumberStr
Value Type String
Database Table Songs
Field Name DiscNumber
Field Type Text
Tracklist Column Disc #

Example Code

Complete script

Sub

  For iCounter = 0 to objSongList.count - 1                                    'SongLists
      Set objSongData = objSongList.Item(iCounter)
      StringDiscNumberStr = objSongData.DiscNumberStr
      SDB.MessageBox "Value = '" &  StringDiscNumberStr & "'", mtError, Array(mbOK)    'SDB.MessageBox
  Next
' objSongData.DiscNumberStr = StringNewDiscNumberStr 'Commented Out For Safety
' objSonglist.UpdateAll              'Commented Out For Safety                 'UpdateAll
                         Updates db and writes tags (if checked in options)
End Sub