Hi.
From a "good code" standpoint, is it ok to just skip over errors if it provides for less if statements? Here's an example in pseudocode.

VB Code:
  1. On Error Resume Next
  2. Dim Path as String
  3. Path = ""
  4. 'draw a circle
  5. picBox.DrawCircle
  6. 'if picture for better circle is present, load it, otherwise just skip
  7. 'If Path <> "" Then
  8. picBox.LoadPicture(Path)
  9. 'End if

As you can see, I can either skip right over the load error and I have my already drawn circle to back me up, or I can go through a slightly longer method of checking to see if an error will come up or not. In your opinion, is it ok to just skip the error like this?