What do these dates represent? I'd actually assumed they were already IN a
table, otherwise, how would you be showing them in a list box? If they
really ARE detail records on the many side of a one-to-many relationship, the
detail records belong in a subform, related to the One side by a common
field. For example, if these records represented phone conversations with a
customer, I'd assume the table structures were something like:
Customers
------------------
CustomerID AutoNumber PK
CustName Text
Address Text
City
etc.
PhoneContacts
--------------------
PCID AutoNumber PK
CustomerID Number (Foreign Key to Customer)
ContactDate Date/Time
Note Text or Memo
A continuous form based on the PhoneContacts would be inserted onto a main
form based on Customers as a subform, linking by the CustomerID field. If
you do not have wizards enabled when you insert the subform, you will have to
set the LinkMasterField and LinkChildField subform properties manually. They
represent the linking field in the main form RecordSource and subform
RecordSource, respectively.
If this doesn't help, you're going to have to explain the structure of your
table(s) and what these dates represent, in as much detail as possible.
Sprinks