H
Hoardling via AccessMonster.com
Running Access 2003 and SQL Server 2000
My problem is I have a form with a currentevent. When my users try running a
filter, they get an error saying that Access had a problem and do you want to
compact and repair. Now I know it is my current event, because I can comment
it out and the error doesn't happen any more. I am using pass throughs to
stored procedures, so I can't do subforms. I used a listbox for this then,
this listbox is updated everytime a record is chosen. Is there a maximum
processing during current event before problems happen???
This is the Form Current:
Private Sub Form_Current()
'Update listbox for Exam
If Not IsNull(mID.Value) Then
Call ViewExam(4, Me.mID.Value)
Me.lstExamMortgage.Requery
End If
End Sub
Any ideas??
My problem is I have a form with a currentevent. When my users try running a
filter, they get an error saying that Access had a problem and do you want to
compact and repair. Now I know it is my current event, because I can comment
it out and the error doesn't happen any more. I am using pass throughs to
stored procedures, so I can't do subforms. I used a listbox for this then,
this listbox is updated everytime a record is chosen. Is there a maximum
processing during current event before problems happen???
This is the Form Current:
Private Sub Form_Current()
'Update listbox for Exam
If Not IsNull(mID.Value) Then
Call ViewExam(4, Me.mID.Value)
Me.lstExamMortgage.Requery
End If
End Sub
Any ideas??