ISDBSongData::Custom2: 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=== | ||
The Tracklist Column is configurable in Options --> Library --> Appearence | |||
{{Property Summary|SongData|Custom2|String|Songs|Custom2|Text|Custom 2||}} | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] | ||
Latest revision as of 01:05, 12 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Custom2 As String
Property description
The Tracklist Column is configurable in Options --> Library --> Appearence
| Scripting Object | SDBSongData |
| Value Name | Custom2 |
| Value Type | String |
| Database Table | Songs |
| Field Name | Custom2 |
| Field Type | Text |
| Tracklist Column | Custom 2 |
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) StringCustom2 = objSongData.Custom2 SDB.MessageBox "Value = '" & StringCustom2 & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Custom2 = StringNewCustom2 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub