G
Guest
I have a week number list box field on a custom form that is populated based
on the values of other form controls. It seems to populate correctly when the
form is run but when you attempt to select a value from the list, you get the
error message that the list box is not available for editing because it is
"bound to an unknown field" followed by a pair of empty boxes inside
quotation marks.
The Row Source Type is Table/Query and the Row Source is a SQL statement as
follows:
SELECT tblAttendance.WeekNo, tblAttendance.Class, tblStudent.StID FROM
tblStudent INNER JOIN tblAttendance ON tblStudent.StID=tblAttendance.StID
WHERE (((tblStudent.StID)=Forms!frmFindAttRecord!cmbStName));
I have checked the syntax carefully and verified that each of the mentioned
fields is valid, but can't understand what I am missing.
Thank you in advance for any help in this matter.
on the values of other form controls. It seems to populate correctly when the
form is run but when you attempt to select a value from the list, you get the
error message that the list box is not available for editing because it is
"bound to an unknown field" followed by a pair of empty boxes inside
quotation marks.
The Row Source Type is Table/Query and the Row Source is a SQL statement as
follows:
SELECT tblAttendance.WeekNo, tblAttendance.Class, tblStudent.StID FROM
tblStudent INNER JOIN tblAttendance ON tblStudent.StID=tblAttendance.StID
WHERE (((tblStudent.StID)=Forms!frmFindAttRecord!cmbStName));
I have checked the syntax carefully and verified that each of the mentioned
fields is valid, but can't understand what I am missing.
Thank you in advance for any help in this matter.