The code in your provided database indeed has the line I advised you to correct:
Code:
Dim strWhere As String '--Criteria for DLookup
Dim varTO As Variant '--Address for SendObject
Dim strText As String '--E-mail text
Dim RecDate As Variant '--Rec date for e-mail text
Dim strSubject As String '--Subject line of email
Dim strWho As String '--Reference to tblPersonnel
Dim strBranchhead As String '--Branchhead making meeting invite
Dim strSQL As String '--Create SQL update statement
Dim strMeetingID As String
Dim errLoop As Error
'-- Combo of name to send email to
strWho = Me.cboEmployeeName(1)
strWhere = "[qryPersonnelMeeting2].[emailaddress] = " & "'" & strWho & "'"
'--Looks up email address from Personnel Meeting Query
varTO = Me.cboEmployeeName
strSubject = ":: Meeting Invitation ::"
RecDate = Me.txtMeetingDate
strMeetingID = Me.txtMeetingID
'--Branchhead who emails invitation
strBranchhead = Me.cboEmployeeName
Go back to my post #3 and make the code corrections. Then you will no longer get Error 13 Type mismatch.
I didn't suggest you add Option Explicit - it is already there.