J
jpnyc
I was trying to create a check box so that if checked, the fields would be
locked. Unfortunately, It also locked me out of unchecking the box to edit
prior fields.
NOW I run into a big problem. I am still locked out making corrections to
prior fields even after I deleted the macros, the check box and everything I
was tinkering with this morning.
The code I used for the check box is as follows:
Private Sub chkLock_Click()
If chkLock = True Then
Me.AllowEdits = False
Me.AllowDeletions = False
Else
Me.AllowEdits = True
Me.AllowDeletions = True
End If
End Sub
So I need help in:
1. re-establishing my editing of prior records(currently locked out)
2. creating a check box that I can click and UNCLICK to lock and edit records.
Many Thanks .....HURRY:-(
locked. Unfortunately, It also locked me out of unchecking the box to edit
prior fields.
NOW I run into a big problem. I am still locked out making corrections to
prior fields even after I deleted the macros, the check box and everything I
was tinkering with this morning.
The code I used for the check box is as follows:
Private Sub chkLock_Click()
If chkLock = True Then
Me.AllowEdits = False
Me.AllowDeletions = False
Else
Me.AllowEdits = True
Me.AllowDeletions = True
End If
End Sub
So I need help in:
1. re-establishing my editing of prior records(currently locked out)
2. creating a check box that I can click and UNCLICK to lock and edit records.
Many Thanks .....HURRY:-(