this is looking good! been working on it over the weekend and there is one bit i cant get.. i have used all the different ways and mixed them together and stuff but im stuck again...last problem

hopefuly
what i have done is set up a list box based on the same qry that my subform is. i have only passes the email addresses from the qry into the listbox. it shows the same as whats in the subform.
this is buck's code that im using with the wee changes
Private Sub Email_Click()
Dim strFilter As String
Dim strInputFileName As String
Dim straddressTXT as String
strFilter = ahtAddFilterItem(strFilter, "All Files (*.*)")
strInputFileName = ahtCommonFileOpenSave( _
Filter:=strFilter, OpenFile:=True, _
DialogTitle:="Please select an input file...", _
Flags:=ahtOFN_HIDEREADONLY)
Dim EmailApp, NameSpace, EmailSend As Object
Set EmailApp = CreateObject("Outlook.Application")
Set NameSpace = EmailApp.getNameSpace("MAPI")
Set EmailSend = EmailApp.CreateItem(0)
EmailSend.Bcc = straddressTXT
EmailSend.Subject = "Advert"
EmailSend.Body = Forms!frmSelect2Email!EmailTXT
EmailSend.Attachments.Add strInputFileName
EmailSend.Display
Set EmailApp = Nothing
Set NameSpace = Nothing
Set EmailSend = Nothing
End Sub
any clues why its not taking the email addresses from the list box?