There comes a point in my error handleing where if error 70 appears I have to reload my form.

I'm currently using a statement like this:

If Err.Number = 70 Then
MsgBox "Database Access/Load Error"
Unload SCS
Load SCS
SCS.Show

And I'm wondering if there is a more professional way of reloading a form short of unloading it then loading it again (plus the flikcer that is the result of my form unloading then loading looks bad!)?

Thanks,
Brandr