I have a (sub)form with the property "DataEntry" set to True (so only new records that are added are visible).
I need a listbox on this form that lists all the newly added records.
What do I have to set the RowSource property to for the listbox to accomplish that?
SELECT * FROM tblName; lists all the records, and that's not what I want.
(I know I must use listbox.requery each time I add a new record to update the listbox)
LP
I need a listbox on this form that lists all the newly added records.
What do I have to set the RowSource property to for the listbox to accomplish that?
SELECT * FROM tblName; lists all the records, and that's not what I want.
(I know I must use listbox.requery each time I add a new record to update the listbox)
LP