This question is locked. New answers and comments are not allowed.
Hello,
I'd like to suppress the dropdown from opening when I change the Text property of my combobox. Presently, I'm doing:
cboRecord.Text = psName + " [" + psID + "]";
cboRecord.CloseDropDown();
cboMasterfile.Text = Sands.GetFullMasterfile(psMasterfile);
cboMasterfile.CloseDropDown();
But when this executes, you still see the dropdown open and then immediately close, which looks buggy. Is there any way to avoid having it open altogether? I've tried disabling the control before and enabling after, but that does not work.
Thanks!
Jeremy