Sam,
You need to put that same code in on the OnCurrent event of the form.
When you programatically disable a field during a form "session" it will
disable that field on all records.
Using your code in the OnCurrent event of the form, allows you to examine
the Member value of that record, and Enable/Disable accordingly.

Signature
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html
"Find a job that you love... and you'll never work a day in your life."
> Hi
>
[quoted text clipped - 14 lines]
> End If
> End Sub
SamJ - 25 Feb 2008 15:12 GMT
> Sam,
> You need to put that same code in on the OnCurrent event of the form.
> When you programatically disable a field during a form "session" it will
> disable that field on all records.
> Using your code in the OnCurrent event of the form, allows you to examine
> the Member value of that record, and Enable/Disable accordingly.
Ok, thanks.