Thank you Scott,
Well, I'm still having trouble with this. It appears the other person that had this before me somehow disabled the ability to move through records from the form. Any records that needed to be input are done through code directly and any records that need to be viewed run from query's.
I've bound the text boxes that I need to input into the table, and have an append query that runs once I click the button and the user selects the path it runs the query to append. Well....it's not working for some reason. I left the confirm messages to just make sure everything's savvy, and it doesn't append any rows. I'm assuming it has to do with my query, what do you think?
Well, I'm still having trouble with this. It appears the other person that had this before me somehow disabled the ability to move through records from the form. Any records that needed to be input are done through code directly and any records that need to be viewed run from query's.
I've bound the text boxes that I need to input into the table, and have an append query that runs once I click the button and the user selects the path it runs the query to append. Well....it's not working for some reason. I left the confirm messages to just make sure everything's savvy, and it doesn't append any rows. I'm assuming it has to do with my query, what do you think?
Code:
INSERT INTO tbl_doc ( cm_name, client_ssn, client_name, doc_location ) SELECT tbl_doc.cm_name, tbl_doc.client_ssn, tbl_doc.client_name, tbl_doc.doc_location FROM tbl_doc WHERE (((tbl_doc.cm_name)=[Forms]![frm_na]![txt_cm]) AND ((tbl_doc.client_ssn)=[Forms]![frm_na]![txt_TIN]) AND ((tbl_doc.client_name)=[Forms]![frm_na]![txt_client]) AND ((tbl_doc.doc_location)=[Forms]![frm_na]![cmb_type]));
Comment