All you need is the Resume Next in you Error Handle routine to continue the next command line.

Code:
Private Sub Form_load()
On Error Goto MyErrorHandle
  >>Your code here

Exit Sub
MyErrorHandle:
   >>Do What ever you want here.
   Resume Next
End Sub