Hi All
Several controls on my form open three additional forms based on the current value of a field called ParticipantID. They all work properly when I am developing the application. But when I close Access and restart the app and immediately try to open any of the forms, Access responds with Runtime Error 64019 — Reserved Error (-1517)
If I subsequently open the form in design mode and immediately open it form view (without changing anything), everything works properly. Last symptom — when the error occurs and I go into debug mode and move the mouse over ParticipantID field in the error line, then Access pops up an error message: Reserved Error (-1517).
Here’s one of the lines:
Private Sub cboPeopleID_DblClick(Cancel As Integer)
DoCmd.OpenForm “frmParticipantsInWorkshops”, , , _
“ParticipantID = ” & ParticipantID, , acDialog
End Sub
Any clue what’s causing this? Thx.