Button to change the prop. setting to allow edits or not

G

Guest

I am trying to create a button on my client form that will allow or dis-allow
editing...I have the form propertiy "allow edits" set to no when the form is
opened, then if someones wants to edit the entry they would be able to click
a button and edit it.

How Can I do this?
 
T

tina

try

Me.AllowEdits = True

you'll also want to add code to the form's Current event, to "re-lock" the
form, as

Me.AllowEdits = False

hth
 
G

Guest

Thanks Tina

:)


tina said:
try

Me.AllowEdits = True

you'll also want to add code to the form's Current event, to "re-lock" the
form, as

Me.AllowEdits = False

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top