I have a LookUpEdit to which I've added several buttons (LookUpEdit.Properties.Buttons). I would like to disable the LookUpEdit (LookUpEdit.Enabled = False) and still enable the button. I tried this, lueMyLookupEdit.Enabled = False; lueMyLookupEdit.Properties.Buttons(1).Enabled = True; But, unfortunately...