Combo Box Question

T

Thomas

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
 
A

Al Camp

Thomas,
On the AfterUpdate event of the Combo...
cboYourComboName.Enabled = IsNull(cboYourComboName)

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

Ron2006

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
 
Top