ISDBSongData::FileModified
		
		
		
		Jump to navigation
		Jump to search
		
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let FileModified As Date
Property description
Tracklist Column to be confirmed Cdbl(Now)
| Scripting Object | SDBSongData | 
| Value Name | FileModified | 
| Value Type | Date | 
| Database Table | Songs | 
| Field Name | FileModified | 
| Field Type | Real | 
| Tracklist Column | Timestamp | 
| Example Data | 05/03/2008 1:41 PM | 
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) DateFileModified = objSongData.FileModified SDB.MessageBox "Value = '" & DateFileModified & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.FileModified = DateNewFileModified 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub
