I have limited VB Knowledge, but I know enough about it to figure most things out when pointed in the right direction. Here's what I would like to do:
I have a form that after the form is updated, "After_Update Event" I would presume, I would like to create a record in a table that is related to this form, then have code enter certain things in the tables fields.
What this table is, is a log of activity for this order, so as soon as the order is created I want to send a record to the log saying "This order was created on this date and time by so and so..." Here's the specifics:
My Form is "frm_OrderEntry"
The table to create the record in is: "tbl_Activities"
The Fields are:
"OrderID" (This is the unique number that relates it to the Order in the table, and it is taken from a field on the "frm_OrderEntry" called "txt_OrderID")
"ActivityDate" (Now)
"ActivityTime" (Now)
"EmployeeID" (taken from a field on the "frm_OrderEntry" called "txt_EmployeeID")
If somebody knows a forum where I can read this or anything that might help with this specific situation would be great.
I have a form that after the form is updated, "After_Update Event" I would presume, I would like to create a record in a table that is related to this form, then have code enter certain things in the tables fields.
What this table is, is a log of activity for this order, so as soon as the order is created I want to send a record to the log saying "This order was created on this date and time by so and so..." Here's the specifics:
My Form is "frm_OrderEntry"
The table to create the record in is: "tbl_Activities"
The Fields are:
"OrderID" (This is the unique number that relates it to the Order in the table, and it is taken from a field on the "frm_OrderEntry" called "txt_OrderID")
"ActivityDate" (Now)
"ActivityTime" (Now)
"EmployeeID" (taken from a field on the "frm_OrderEntry" called "txt_EmployeeID")
If somebody knows a forum where I can read this or anything that might help with this specific situation would be great.