Here's my problem, I have a .tif file displaying into a tiff viewer. My tiff is being displayed based on a text box, which holds the path to the image. If the image path, for example says, "c:\images\2365.tif" and there isn't a tiff, I get an error "53". How can I error check for this?? Would i do someting like: Any better ideas??

On Error GoTo HandleErrors:

CODE.....

HandleErrors:
If err.number = 53 then
MsgBox"Error, Image doesn't exist"
End if