help with unlocking a combo box

  • Thread starter jln via AccessMonster.com
  • Start date
J

jln via AccessMonster.com

Here is what i have. I have records that once they are saved i need the combo
box locked , but when the create a new record button is pushed the combo box
unlocks and allows for something to be selected. and then lock once the new
record is saved.
 
J

John Spencer

In the On current event of the form, you would need something like the
following

If Me.NewRecord then
Me.Combobox.Locked = False
Else
Me.Combobox.Locked = True
End if


In the button New Button record you might need to include
Me.Combobox.Locked = False
 

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