I'm not sure if this is what you want, but I wrote this VBA module to automatically add a reference in Access to the Outlook object library.
Function AddOutlookOleObjectLibrary() As String
' This subroutine automatically adds the Microsoft Outlook 9.0 Object Library
Dim r As Reference, r1 As Reference
Dim s As String, bExists As Boolean
bExists = False
For Each r In Application.References
If r.Name = "Outlook" Then
bExists = True
Exit For
End If
Next
If bExists Then
AddOutlookOleObjectLibrary = "Outlook Library References already exist."
Else
'Get file location
s = SysCmd(acSysCmdAccessDir) & "Msoutl9.olb"
' Add the Reference for The Outlook Object Library
References.AddFromFile s
For Each r In Application.References
If r.Name = "Outlook" Then
AddOutlookOleObjectLibrary = "Outlook Library References Added."
End If
Next
End If
End Function
This is part of a larger module ("Access 2000 SendMessage Function"

you can view and download from my computing page.
Terry L. Broadbent - Salt Lake City, UT
Home of the 2002 Winter Olympics (Feb 8-24)