I have a table for client complaints, tbl_CARGeneral. The fields are:
tbl_CARGeneral
CARID <autonumber>
Initiated By <Text>
Date Initiated <Date>
Status <Text>
I have a form, frm_CARNew, where users can log the complaints into tbl_CARGeneral. I then copied this form (frm_CARReview) then set the data entry property to No. I also set the recordsource to a query that gives me the last record in tbl_CARGeneral. When frm_CARNew is closed, frm_CARReview opens up and the last record in tbl_CARGeneral is shown. I then have a command button that emails this last record. Is it possible to email the last record entered into tbl_CARGeneral automatically when frm_CARNew is completed so that I don't have to open frm_CARReview?
tbl_CARGeneral
CARID <autonumber>
Initiated By <Text>
Date Initiated <Date>
Status <Text>
I have a form, frm_CARNew, where users can log the complaints into tbl_CARGeneral. I then copied this form (frm_CARReview) then set the data entry property to No. I also set the recordsource to a query that gives me the last record in tbl_CARGeneral. When frm_CARNew is closed, frm_CARReview opens up and the last record in tbl_CARGeneral is shown. I then have a command button that emails this last record. Is it possible to email the last record entered into tbl_CARGeneral automatically when frm_CARNew is completed so that I don't have to open frm_CARReview?