...............................................
On Error Resume Next
' Delete the Selection Set if it Exists
If Not IsNull(ThisDrawing.SelectionSets.Item("xxx")) Then
Set sset = ThisDrawing.SelectionSets.Item("xxx")
sset.Delete
End If
Set sset = ThisDrawing.SelectionSets.Add("xxx")
..................................................................................