Right now I am using this to send an email from a form:
Private Sub Command76_Click()
Dim strToWhom As String
Dim strMsgBody As String
Dim strSubject As String
strSubject = Me.Title
strToWhom = "Email Address"
strMsgBody = Me.Commentary
DoCmd.SendObject , , , strToWhom, strToCCWhom, ...
I have it where a user inserts a record. Then the page gets redirected and passes the newly created PK to the new page as a query string. What I want to do is take that newly created PK and combine it with a list of default records from a table and insert that string into a different table...
Can anyone help me, I would like to open a db that has the code or macro to run on start up. I would like to have this code delete a query on C:\Program Files\database1\database.mdb and insert a query from C:\Program Files\database2\database.mdb into C:\Program Files\database1\database.mdb. In...
I am trying to do a batch insert from a detail page. I have a department table, employee table, and a employee financial table. On the detail page I can bring over the employeeid, departmentid, and the financialid and populate the page with all employees and their different accounts:
Example...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.