The other code that I was playing with for a little bit is below.
Dim r As Recordset
Dim email As String
Set r = CurrentDb.OpenRecordset("select * from QryEmail")
Do While Not r.EOF
email = email & r(2) & ";"
r.MoveNext
Loop
r.Close
DoCmd.SendObject acSendNoObject, Null, Null, email...
Skip,
Each course is more unique in that it is it's own record. The instructor drop downs are keyed off of what they are vetted to teach. So when you have a record for delivery of the FRTI course, only instructors who are vetted for that specific course will be available in the drop down...
Skip,
I've gone through several different variations of coding while bludgeoning myself but here is the last one.
Dim strSql
Dim db As Database
Set db = CurrentDb()
Dim rs As Recordset
Dim Lrs As DAO.Recordset
Dim Outlook
strSql = "SELECT E-Mail FROM QryEmail2"
Set Lrs =...
Hello all. This is my first post to the site and I have a problem that I've been beating my head against the wall on for the last couple weeks. I'm sure that it's child's play for most of you. I'm not brand new to VBA coding but I am by no means a master of the art. I have a database that...
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.