nycbigapple
Technical User
Hi, I am trying to lock a text field in a tab control with a check box. I am able to lock the field but it locks all the records. I unlock the field it unlocks all the records.
any ideas? thanks
Private Sub Form_Current()
If Me.NewRecord Or Not Me!LockE Then
Me.txtSecE.Locked = False
Me.txtSecE.BackColor = 1677215
Else
Me.txtSecE.Locked = True
Me.txtSecE.BackColor = 11075496
.......
any ideas? thanks
Private Sub Form_Current()
If Me.NewRecord Or Not Me!LockE Then
Me.txtSecE.Locked = False
Me.txtSecE.BackColor = 1677215
Else
Me.txtSecE.Locked = True
Me.txtSecE.BackColor = 11075496
.......