How to handle "Exists" property? It throws "error" when certain object doesn't exist instead of throwing it as "False"
Consider the below scenario ********** If object.Exists Then 'Action to be done when object is present Else 'Action to be done when object is not present End If ********** ...