Hi All

I have a two forms:

Form1 and Form2. here is a sample code:

in form2:
Code:
Private Sub Form_Load()

On Error GoTo ErrorLable


'code...............

ExitSub:
Exit Sub

ErrorLable:

err.clear
          
 GoTo ExitSub:
 
End Sub


in form1:

form2.hide

code.....

form2.hide

if an error occurs in Form2 and want to call it again from form1, it will skip over it and I cannot call form2 again. what can I do to call form2 again even if it had an Error.

thanks

Wajdi