Combo Box Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a large database to populate. in my forms I am using a combo box for
selections. is there a way I can prevent changing that selection while still
letting me make a new selection in the next record?
thank you
 
Thomas,
On the AfterUpdate event of the Combo...
cboYourComboName.Enabled = IsNull(cboYourComboName)

On the Currrent event of the Form...
cboYourComboName.Enabled = IsNull(cboYourComboName)
 
Thomas,

What are you planning to do if the person makes a selection and gets
off the combo and realizes that he picked the wrong one?

Ron
 

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

Back
Top