You can always set the reference programatically;
<pre/>
Sub CreateRef_Library_ADODB()
'// Set a Reference to ADODB[M].tlb
'// Microsoft ActiveX Data Objects 2.0 Library M.m Type Library
'// : Note The 1 for Major Version!
'// If it already exits Resume & Handle latter!
'// C:PROGRAM FILESCOMMON FILESSYSTEMADOmsado20.tlb
On Error Resume Next
Set ID = ThisWorkbook.VBProject.References
ID.AddFromGuid "{00000200-0000-0010-8000-00AA006D2EA4}", 1, 0
If Err.Number <> 32813 And Err.Number <> 0 Then
MsgBox "Error Number:= " & Err.Number & vbCr _
& "Error Discrp:= " & Err.Description & vbCr & vbCr & _
"[msado20.tlb] Type Library", _
vbMsgBoxHelpButton, _
"Error" & sGuid, Err.HelpFile, Err.HelpContext
End If
End Sub
</pre>