OK to get to the Tools-> References menu you must be in a code module. So open up the code that contails the SendObject command and look at Tools there.
To do this, you will not use the Send Object command, you will create a reference to Outlook and create your message and attachments using this reference. Here is some sample code.
I use this to send a simple emial from Access. What this does is print a few reports and email one of my coworkers that it is ready. There is an Attachments property, that you can set to the path of your file.
*****Begin Sample Code****
Function GL1XX_Driver()
On Error GoTo DriverErr
Dim outApp As Outlook.Application
Dim outMessage As Outlook.MailItem
Dim dtmDelay As Date
Dim strName As String
Dim x As Integer
Dim blnErrors As Boolean
Dim strErrStr As String
GL1XX_Driver = RC_ABEND
For x = 1 To 6
strName = "rptGL10" & x & "_A"
DoCmd.OpenReport strName, acViewNormal
'DoCmd.OpenReport strName, acViewPreview
Next x
Set outApp = CreateObject("Outlook.application"
Set outMessage = outApp.CreateItem(olMailItem)
outMessage.To = "Jane Whitney"
outMessage.Subject = "Out of Balances are ready at the printer"
outMessage.Send
GL1XX_Driver = RC_COMPLETE
DriverExit:
On Error Resume Next
Set outMessage = Nothing
outApp.Quit
Set outApp = Nothing
Exit Function
DriverErr:
blnErrors = True
strErrStr = "Driver: " & strName & "did not print"
Call Write_Err("GL1XX", strErrStr)
Resume DriverExit
End Function
*****End Sample Code****
This should get you started. Post if you need more help. Kathryn