I am attempting to use checkboxes ("Me.CONTACTS.Group Email") to select specific email addresses ("Me.CONTACTS.Email_1") which will then all be added to a message upon clicking a button ("CommandEmail"). The following code gives me an error ('438' Object doesn't support this property or method). Any help here please?
Private Sub CommandEmail_Click()
Dim strHighAddress As String
If Me.[CONTACTS].[Group Email].Value = True Then
strHighAddress = Me.[CONTACTS].[Email__1].Value
Application.FollowHyperlink "mailto:" & "" & strAddress & ""
End If
End Sub
Private Sub CommandEmail_Click()
Dim strHighAddress As String
If Me.[CONTACTS].[Group Email].Value = True Then
strHighAddress = Me.[CONTACTS].[Email__1].Value
Application.FollowHyperlink "mailto:" & "" & strAddress & ""
End If
End Sub