D
Daniel M
I have a form that submits the fields by recordset instead of bound fields.
Dim Rs As Recordset
Set Rs = CurrentDb.OpenRecordset("Assets")
Rs.AddNew
Rs![Dateentered] = Dateentered
Rs![EmployeeID] = Employees.Value
Rs.Update
Rs.Close
when i click a command button it submits the record to the table. I would
also like to send the record to a report for printing. there is now primary
key on this form. can someone help me figure out how to capture the recordset
and send it to a report?
Thanks.
Dim Rs As Recordset
Set Rs = CurrentDb.OpenRecordset("Assets")
Rs.AddNew
Rs![Dateentered] = Dateentered
Rs![EmployeeID] = Employees.Value
Rs.Update
Rs.Close
when i click a command button it submits the record to the table. I would
also like to send the record to a report for printing. there is now primary
key on this form. can someone help me figure out how to capture the recordset
and send it to a report?
Thanks.