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