D
Daniel
I am coming to an error when I open some forms. I have a
continuous form where the user can choose the desired
record to open a detailed form. The code on double-click
is as follows:
Private Sub fApptID_DblClick(Cancel As Integer)
DoCmd.OpenForm "frmAppt", , , "[fApptID] = '" &
Me!fApptID & "'", acFormEdit
CurrentPtID = Me!fPtID
DoCmd.Close acForm, "frmApptList"
End Sub
When I try to update frmAppt with all the info it
says "Recordset is not updateable." I am unsure why this
happens in some cases and not in others. Does it matter on
what the first, continuous form is based on?
Thanks
Dan
continuous form where the user can choose the desired
record to open a detailed form. The code on double-click
is as follows:
Private Sub fApptID_DblClick(Cancel As Integer)
DoCmd.OpenForm "frmAppt", , , "[fApptID] = '" &
Me!fApptID & "'", acFormEdit
CurrentPtID = Me!fPtID
DoCmd.Close acForm, "frmApptList"
End Sub
When I try to update frmAppt with all the info it
says "Recordset is not updateable." I am unsure why this
happens in some cases and not in others. Does it matter on
what the first, continuous form is based on?
Thanks
Dan