G
GailK
Hi,
Using Access 2000
Would like to have one "edit" command button for two option groups -
Coaching Recommendation and Coaching Actioned [each a yes/no] - which will
allow the coach to update these two controls accordingly in the record being
viewed only while all other controls in form remain locked. I am unclear with
how to code this request.
Currently I have the edit and deletion options to No and additions to Yes on
the form.
Edit button coding :
Private Sub cmdEdit_Click()
Me.AllowEdits = Me.CurrentRecord
Me.AllowEdits = True
End Sub
form OnOpen Event :
Private Sub Form_Current()
Me.AllowEdits = False
End Sub
thx
Using Access 2000
Would like to have one "edit" command button for two option groups -
Coaching Recommendation and Coaching Actioned [each a yes/no] - which will
allow the coach to update these two controls accordingly in the record being
viewed only while all other controls in form remain locked. I am unclear with
how to code this request.
Currently I have the edit and deletion options to No and additions to Yes on
the form.
Edit button coding :
Private Sub cmdEdit_Click()
Me.AllowEdits = Me.CurrentRecord
Me.AllowEdits = True
End Sub
form OnOpen Event :
Private Sub Form_Current()
Me.AllowEdits = False
End Sub
thx