From Text Box to List Box

T

TMM

I created a form with a Text Box (country)
I create a sub form with a Text Box (city)

If I "change to" List Box the text box (city, [subform]) then the list box
is not populated...

What am I doing wrong?
 
A

Arvin Meyer [MVP]

You can only do this with a combo or list box that is not bound to a field
in the underlying table. Use a query or select statement to populate the
RowSource property of the combo or list box.
 
Top