I'm trying to call a function multiple times, with different parameters, in the "Form_Load()" event. Unfortunately, it seems only the first call works; all following calls are ignored. I'm thinking that it may have something to do with the function already running when it's called the second time?
Here is the call code:
Access 2013 on Windows 7
Here is the call code:
Code:
Private Sub Form_Load()
Call DD_RecordMisses("A", "A", "A")
Call DD_RecordMisses("B", "B", "B")
Call DD_RecordMisses("C", "C", "C")
Call DD_RecordMisses("D", "D", "D")
Call DD_RecordMisses("E", "E", "E")
Call DD_RecordMisses("F", "F", "F")
End Sub