ISDBSongData::PostGap
		
		
		
		Jump to navigation
		Jump to search
		
CoClass SDBSongData, Interface ISDBSongData
Property Get/Let PostGap As Long
Property description
| Scripting Object | SDBSongData | 
| Value Name | PostGap | 
| Value Type | Value | 
| Database Table | Songs | 
| Field Name | PostGap | 
| Field Type | Integer | 
Example Code
Sub For iCounter = 0 to objSongList.count - 1 'SongLists Set objSongData = objSongList.Item(iCounter) ValuePostGap = objSongData.PostGap SDB.MessageBox "Value = '" & ValuePostGap & "'", mtError, Array(mbOK) 'SDB.MessageBox Next ' objSongData.PostGap = ValueNewPostGap 'Commented Out For Safety ' objSonglist.UpdateAll 'Commented Out For Safety 'UpdateAll Updates db and writes tags (if checked in options) End Sub
