L
LAS
I have begun getting an error "The recordset is not updateable" on a form
that has been used for several years. I've made significant additions to
the database, but nothing involving this form. To check this, I've imported
copies of this form from months' old databases, have changed the color of
labels, to make sure I'm using the old form. So all I can think is that the
problem is in the database tables. Can anyone suggest what might have
changed in the tables to cause this error?
The error happens at this point.
Me!Principle2 = gi_MaxScore
The recordsource is this. This is from old, running copies of the form.
SELECT tblScores.*, tblperiods.Description, tblScores.Student_ID,
tblStudents.Personal_Goals
FROM (tblScores INNER JOIN tblperiods ON tblScores.Period_Code =
tblperiods.Period_Code) INNER JOIN tblStudents ON tblScores.Student_ID =
tblStudents.Student_ID
WHERE
(((tblScores.Student_ID)=[Forms]![frmStudentScoreEntry]![txtStudent_ID]) AND
((tblScores.Score_Date)=[Forms]![frmStudentScoreEntry]![txtScore_Date]) AND
((tblperiods.Period_Code)<>'*'))
ORDER BY tblperiods.Sort_Order;
that has been used for several years. I've made significant additions to
the database, but nothing involving this form. To check this, I've imported
copies of this form from months' old databases, have changed the color of
labels, to make sure I'm using the old form. So all I can think is that the
problem is in the database tables. Can anyone suggest what might have
changed in the tables to cause this error?
The error happens at this point.
Me!Principle2 = gi_MaxScore
The recordsource is this. This is from old, running copies of the form.
SELECT tblScores.*, tblperiods.Description, tblScores.Student_ID,
tblStudents.Personal_Goals
FROM (tblScores INNER JOIN tblperiods ON tblScores.Period_Code =
tblperiods.Period_Code) INNER JOIN tblStudents ON tblScores.Student_ID =
tblStudents.Student_ID
WHERE
(((tblScores.Student_ID)=[Forms]![frmStudentScoreEntry]![txtStudent_ID]) AND
((tblScores.Score_Date)=[Forms]![frmStudentScoreEntry]![txtScore_Date]) AND
((tblperiods.Period_Code)<>'*'))
ORDER BY tblperiods.Sort_Order;