Hi CSSC1.. yes I did already add it to your database I uploaded.
The same problem occurs in the LoadInputListBox() procedure of the frmSelectControlsDirectly_VER1 form because the qry_allControls query has no data.. So I added the same error handler code to this procedure as well...
Basically all I did was change this part:
ERROR_Handler:
MsgBox "error - " & Err.Number & ", " & Err.Description
Resume Exit_Sub
to this:
ERROR_Handler:
Select Case Err.Number
Case 3021
rst.Close: Exit Sub
Case Else
MsgBox "error - " & Err.Number & ", " & Err.Description
Resume Exit_Sub
End Select