fneily,
The info. for the list isn't in a table. All the choices for the listbox was placed in the 'Row Source' properties. It might be worthwhile for me to create a table to store the info. instead of through the listbox properties.
The following is the code for the command button that saves the record.
Private Sub Command64_Click()
On Error GoTo Err_Command64_Click
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
Call Save_Databases
Err_Command64_Click:
MsgBox "Record Saved"
End Sub
I think the above code is insufficient in saving the record to the right tables (especially the items in the listbox). I think thats why it's not functioning properly. It seems to save the record fine when its first created (listbox items included). However, when I go in to do an edit of the record using the same form it winds up deleting the previous records entered through the listbox and fails to enter any new information at all in the table. If you can point me in the right direction on this as well it would be greatly appreciated.
In any event, I am going to use your idea (code) of opening the table and add the new value from the textbox using a command button.
Thanks again.