Combo Box.

  • Thread starter Thread starter Snide
  • Start date Start date
S

Snide

I have a combo box on my form that is utilized for
searching. You enter the data and it pulls up the record
requested. My question is, is there a way to get the
triangle on the right side to disappear? Basically I want
it to look like a text box, but do the same as my combo
box.

Thanks.
 
Try copying the "afterupdate" event code from the combo
box to a regular text field. You will have to change the
reference in the code from the combobox to the text
field, but as long as the combobox is searching based of
of text and not the unique value, it should work.
 
Back
Top