Forum Discussion

softwarevikram's avatar
softwarevikram
Occasional Contributor
11 years ago

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 ********** ...