Combo box

T

Tom

We are using a combo box to hold a list of delivery
address's held in a existing table.
At present the combo box will only show the first line of
that address. Would like to have the combo box show the
first two lines.

Is this possible to achieve - if so how?

Thanks in Advance

Tom
 
G

Gerald Stanley

Where the RowSource SQL has something along the lines of
SELECT addressLine1 etc
try changing it to
SELECT addressLine1 & ", " & addressLine2 etc
to give you the two lines in a single column.

If you want the address lines in their own columns, it
would need changing to
SELECT addressLine1 , addressLine2 etc
and you will need to change the columnCount property.

You will have to change addressLine1 and addressLine 2 to
suit the column names in your own app.

Hope This Helps
Gerald Stanley MCSD
 
T

Tom

Gerald

The delivery address is held in 1 field so unfortunately
this suggestion would not work in this instance - can you
suggest an alternative

Tom
 

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