Combobox

R

recoverybob

Is there a way to make a combobox do this:
COMBOX|App |Fox|Oxen|
|Bug |Hop|Moth|
|Cat |Inn |Zoon|
|Dog |Jif |
|Eli |

So the Columns expand to view all records.
or Can you do a Combobox that starts with a,b,c...?
 
P

Pat Hartman

you can make it open when it gets the focus. Is that what you want?

Private Sub StateID_GotFocus()
Me.cboStateID.Dropdown
End Sub
 
C

Chris

A combo box can display multiple colums by setting the column count and
column widths properties. However, if I understand your request, it will not
display in the format you are asking for. For example, a combo box can
display:
id, first name, last name
id, first name, last name
id, first name, last name
etc.

I think what you are looking for is:
first name, first name
first name, first name
first name, first name

and this is not possible.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top