I have a combo box that applies a filter to a form.
Private Sub Combo62_AfterUpdate()
myString = Me.Combo62
Me.RecordSource = "SELECT BMembers.*, [BQualify].[Category] FROM (BQualifyList INNER JOIN BQualify ON [BQualifyList].[BQualify]=[BQualify].[Category]) INNER JOIN BMembers ON [BQualify].[MemberID]=[BMembers].[CustomerID] WHERE ((([BQualify].[Category])=""" & myString & """
);"
'Me.Filter = "[BQualify] = " + Me![Combo62]
'Me.FilterOn = True
End Sub
this works fine. I have tried several methods to try and send an email out to the records that are returned. I have had no luch I have used the bulk emailing finctions before. I am really stuck on this and would appreciate any help I may get here.
Private Sub Combo62_AfterUpdate()
myString = Me.Combo62
Me.RecordSource = "SELECT BMembers.*, [BQualify].[Category] FROM (BQualifyList INNER JOIN BQualify ON [BQualifyList].[BQualify]=[BQualify].[Category]) INNER JOIN BMembers ON [BQualify].[MemberID]=[BMembers].[CustomerID] WHERE ((([BQualify].[Category])=""" & myString & """
'Me.Filter = "[BQualify] = " + Me![Combo62]
'Me.FilterOn = True
End Sub
this works fine. I have tried several methods to try and send an email out to the records that are returned. I have had no luch I have used the bulk emailing finctions before. I am really stuck on this and would appreciate any help I may get here.