Dim MCCurPlaylist As MediaCenter.IMJCurPlaylistAutomation
MCCurPlaylist = mediaCenterRef.GetCurPlaylist
If Not MCCurPlaylist Is Nothing Then
If MCCurPlaylist.GetNumberFiles >= CInt(pos) Then
MCCurPlaylist.RemoveFile(CInt(pos))
End If
End If