ISDBSongData::Cached: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
mNo edit summary  | 
				MoDementia (talk | contribs)  No edit summary  | 
				||
| (One intermediate revision by the same user not shown) | |||
| Line 3: | Line 3: | ||
===Property description===  | ===Property description===  | ||
Determines if a song is cached on the Virtual CD.  | Determines if a song is cached on the Virtual CD.  | ||
{{Property Summary|SongData|Cached|Value|Songs|CacheStatus|Integer|(Properties) Virtual CD||}}  | |||
=== Related Topics ===    | === Related Topics ===    | ||
*[[ISDBSongData::CachedPath]]  | *[[ISDBSongData::CachedPath]]  | ||
Latest revision as of 07:37, 13 April 2008
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let Cached As EnumCacheStatus
Property description
Determines if a song is cached on the Virtual CD.
| Scripting Object | SDBSongData | 
| Value Name | Cached | 
| Value Type | Value | 
| Database Table | Songs | 
| Field Name | CacheStatus | 
| Field Type | Integer | 
| Tracklist Column | (Properties) Virtual CD | 
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValueCached = objSongData.Cached SDB.MessageBox "Value = '" & ValueCached & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.Cached = ValueNewCached 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub