Hi guys
i'm trying to set up an Edit faciltiy on a Bound Form. I have created the button with the following code:
Private Sub cmdEdit_Click()
Me.AllowEdits = True
Me![Title].SetFocus
End Sub
which allows me to Edit the current record. All well and good except when I move to the next record the AllowEdits property is still true when I dont necessarily want it to be. I'm sure it's something simple. Is this the most efficient way of doing it?
i'm trying to set up an Edit faciltiy on a Bound Form. I have created the button with the following code:
Private Sub cmdEdit_Click()
Me.AllowEdits = True
Me![Title].SetFocus
End Sub
which allows me to Edit the current record. All well and good except when I move to the next record the AllowEdits property is still true when I dont necessarily want it to be. I'm sure it's something simple. Is this the most efficient way of doing it?