Changing text box property after Update

  • Thread starter Thread starter Jim/Chris
  • Start date Start date
J

Jim/Chris

I do not know the macro command but
how about this in the after update
event procedure
Me.FieldName.Locked = True

Jim
-----Original Message-----
I would like to change the property of a text box to
Locked after I have updated the field. I know I need to
create a macro for the AfterUpdate command but I can't seen
to figure it out. Any help is appreciated.
 
With a macro, you would use...
Action: SetValue
Item: [YourField].[Locked]
Expression: Yes
 
Back
Top