hi
i am trying to set up a mail merge button which takes records from a
multi-select listbox (the contents of which are decided by a query
created by a search from) and not from a specific query.
I have a function GetCriteria()
This works fine but i want to be able to use mail merge in the same
way. Also i want to create mailing labels but a button to the
mailinglabel report needs to be linked to a query.
Can anyone help?
thanx
lou
i am trying to set up a mail merge button which takes records from a
multi-select listbox (the contents of which are decided by a query
created by a search from) and not from a specific query.
I have a function GetCriteria()
Code:
Private Function GetCriteria() As String Dim stDocCriteria As String Dim VarItm As Variant For Each VarItm in lstBox.ItemsSelected stDocCroteria = stDocCriteria & "[ID] = "& lstBox.Column (0,VarItm) & "OR" Next If stDocCriteria <> " " Then stDocCriteria = Left(stDocCriteria, Len(stDocCriteria) -4) stDocCriteria = "True" End If GetCriteria = stDocCriteria End Function I also have a button to open a report and another to open a form, these use DoCmd.OpenReport "RptIndividualContacts" acPreview,,GetCriteria()
way. Also i want to create mailing labels but a button to the
mailinglabel report needs to be linked to a query.
Can anyone help?
thanx
lou
Comment