Code:
Sub Form_Load() On Error GoTo Notable Notable: Select Case Err Case 0 Resume Next Case 2580 ' catch the specific error Call FormFIX Case Else ' All other errors will trap Beep MsgBox Err.Description Exit Sub End Select Resume 0 End Sub
Error still comes up, and the table is not built. FormFIX is a Sub (by default, Public) in another module called nonformsubs
Comment