OK, I'm working with a database of hospital patients. I
have a form with the patient's ID#, name and so forth. I
have a combo box on that form to select what medication
that patient is on from a list of current medications
(tbl_meds_list). Sometimes the patient's medication is not
on that list and it must be entered manually. I have code
in the "notinlist" event for the combo box which prompts
if the new medication is to be added to the current list,
in which case it is appended to tbl_meds_list so that the
next time around the new medication does not have to be
typed in manually. the combo box is used to not only make
a selection but also to enhance the selection list. This
all works great and it is a common modification to the
combo box. But sometimes the user makes a typo in
entering the new medication name and also some medications
are no longer used or the tradename changes or we do not
want it as a choice anymore. In this case the medication
name has to be deleted from tbl_meds_list. The user only
knows how to enter data in a table and find records and
delete patient records, etc. I wanted to have an easy way
for the user to delete an entry from the meds list without
having another command button or menu item on the form.
I hope this better explains what I'm trying to do.
Thanks for your help.
ems