I have a form that shows information about a course. if you click on the "edit course info button" a pop appears to edit the info once you edit and hit submit the update query runs and then the original for should requery but it does not.
here is the requery code
And here is the code for the form that should requery
here is the requery code
Code:
Forms!frm_createcourseverify.requery
And here is the code for the form that should requery
Code:
Private Sub Form_Load()
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("select * from tbl_courses")
rs.MoveLast
Me.courseid = rs![courseid]
Me.Text7 = rs![COURSENUM]
Me.Text3 = rs![COURSEDATE]
Me.Text5 = rs![COURSEBLOCKS]
Me.Text1 = rs![COURSETITLE]
Me.Text9 = rs![COURSEDAYS]
Me.Text11 = rs![COURSEHOURS]
End Sub