dmarsh16946
Technical User
Have a form where individual fields can be locked by setting their tag values to "?", or unlocked by setting to "" (thanks for the procedure AceMan, it's been so useful).
Users may want to change which fields they want to lock so I'd like to make it easy to tag or untag fields without having to go into each field's Properties separately.
Did think of having an unbound checkbox beside each field with an AfterUpdate
If Me.Check10 = -1 Then
Me.FirstName.Tag = "?"
Else
Me.FirstName.Tag = ""
End If
But these of course clear themselves when the form is reopened.
So any ideas appreciated how to make the tag settings stick.
Users may want to change which fields they want to lock so I'd like to make it easy to tag or untag fields without having to go into each field's Properties separately.
Did think of having an unbound checkbox beside each field with an AfterUpdate
If Me.Check10 = -1 Then
Me.FirstName.Tag = "?"
Else
Me.FirstName.Tag = ""
End If
But these of course clear themselves when the form is reopened.
So any ideas appreciated how to make the tag settings stick.