T
TC
What do you mean, "to Enable a button = false" ?
If you want to enable a button, set its Enabled property to True in Design
mode of the form in question. Or, put code in that form's Open or Load event
to set that property depending on a condition that you check at runtime.
Also, is MPID a text field? If so, you should enclose the value of that
field, in quotes:
... "[MPID] = """ & Me![MPID] & """"
HTH,
TC
If you want to enable a button, set its Enabled property to True in Design
mode of the form in question. Or, put code in that form's Open or Load event
to set that property depending on a condition that you check at runtime.
Also, is MPID a text field? If so, you should enclose the value of that
field, in quotes:
... "[MPID] = """ & Me![MPID] & """"
HTH,
TC