Link to home
Start Free TrialLog in
Avatar of sharpapproach
sharpapproach

asked on

Make a combobox like a textbox

Is there a way to make a combobox look like a textbox.  Basically I have an ID that I need the DataSource propoerty but then want to display it as a textbox so they can't click a down arrow.
ASKER CERTIFIED SOLUTION
Avatar of DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Have you tried Locked = true / enabled = false in your combo properties?

An alternative if you don't want the arrow visible at all is to use a listbox and size it down to a single row of data.
Or use a textbox and query your result, which can be stored in a disconnected recordset.