View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Does Shape Exist?

Hi Alan

You can use a on error

On Error Resume Next
'your delete code
On Error GoTo 0


--
Regards Ron de Bruin
http://www.rondebruin.nl



"Alan" wrote in message oups.com...
Using VBA how can I determine whether a shape (e.g. a rectangle) with a
specific user defined name actually exists before I try to delete it?

thanks ...