Office 9 library

peljo

Registered User.
Local time
Today, 10:12
Joined
May 24, 2006
Messages
24
Microsoft Office 9 object library

I cannot understand what fails to my code for creating a reference to the Microsoft Object library.it seems to me that the code is all right, the path is the same
but my code does not produce a reference to this library.
Could someone help me ?


Function AddOffice9() As Boolean
Dim ref As Reference, strFile As String
strFile = "C:\Program Files\Microsoft Office\Office\MS09.DLL"
On Error GoTo Error_AddOffice9
Set ref = References.AddFromFile(strFile)
AddOffice9 = True
Exit_AddOffice9:
Exit Function
Error_AddOffice9:
'MsgBox Err & ": " & Err.Description
AddOffice9 = False
Resume Exit_AddOffice9
End Function
 
When you are in VB select from the menu bar tools , preferences
And select the Library from the list
 
What error do you get?
 

Users who are viewing this thread

Back
Top Bottom