ISDBSongData::Channels: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| MoDementia (talk | contribs) No edit summary | MoDementia (talk | contribs)  No edit summary | ||
| (One intermediate revision by the same user not shown) | |||
| Line 2: | Line 2: | ||
| ===Property description=== | ===Property description=== | ||
| {{Property Summary|SongData|Channels|Value|Songs|Stereo|Integer| | {{Property Summary|SongData|Channels|Value|Songs|Stereo|Integer|Channels|1 (Stereo)|}} | ||
| [[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] | ||
Latest revision as of 00:44, 12 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Channels As EnumChannels
Property description
| Scripting Object | SDBSongData | 
| Value Name | Channels | 
| Value Type | Value | 
| Database Table | Songs | 
| Field Name | Stereo | 
| Field Type | Integer | 
| Tracklist Column | Channels | 
| Example Data | 1 (Stereo) | 
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValueChannels = objSongData.Channels SDB.MessageBox "Value = '" & ValueChannels & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Channels = ValueNewChannels 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub
