stormin_norm
Registered User.
- Local time
- Today, 17:12
- Joined
- Apr 23, 2003
- Messages
- 213
I have one form->subform which continues to produce the following error message when I attempt to exit the form:
"You can't carry out this action at the present time"
I checked all the forms for locking etc...but can not find what is causing this error message. HELP! What typically causes this error? I have to kill access, delete the ldb file, and then restart access. I have other form/subform combos which work fine. And YES, I have run the compact/repair utility. Any other hints?
background:
A student transcript contains 1..n colleges, for each college there are 1..n courses the student has taken at the college.
psuedo-forms:
frmCollegeCourseSelect - select a student from the STUDENT table, double click method on list box runs following code:
DoCmd.OpenForm "frmCollegeCourse", , , "[StudentID] = " & Me![lbStudentSelection]
frmCollegeCourse record source is the table College
fsubCollegeCourse record source is the table Course linked to parent from [StudentID], [College Number]
"You can't carry out this action at the present time"
I checked all the forms for locking etc...but can not find what is causing this error message. HELP! What typically causes this error? I have to kill access, delete the ldb file, and then restart access. I have other form/subform combos which work fine. And YES, I have run the compact/repair utility. Any other hints?
background:
A student transcript contains 1..n colleges, for each college there are 1..n courses the student has taken at the college.
psuedo-forms:
frmCollegeCourseSelect - select a student from the STUDENT table, double click method on list box runs following code:
DoCmd.OpenForm "frmCollegeCourse", , , "[StudentID] = " & Me![lbStudentSelection]
frmCollegeCourse record source is the table College
fsubCollegeCourse record source is the table Course linked to parent from [StudentID], [College Number]