TKM said:
How do I show the actual selection (data) in my table instaed of the ID
number associatied with the selection. I know there are ways but really
need
help fast on this one.
Thanks again
I recommend against it. The ID number is what is stored in the table, so
that's what should show when you look at the table. Your users should never
edit data directly in a table. What you should do is create a form based on
the table, and bind a combo box to the ID number field. For the Row Source
property of the combo box, use a query that selects the ID number and
"actual data" from whatever reference table contains the ID numbers/data
pairs. Set the number of columns to 2, the bound column to 1, and the column
widths to something like 0";1".
Carl Rapson