I have a list box that is populated by the records of a table. I want the records of another table to be removed from that list box.
Example: Table 1 (adds to list box):
entry1
entry2
entry3
entry4
entry5
Table 2 (subtracts from list box):
entry3
entry5
Final list box:
entry1
entry2
entry4
How can I do this?