-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmod_exc_References.bas
executable file
·39 lines (33 loc) · 1.34 KB
/
mod_exc_References.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Attribute VB_Name = "mod_exc_References"
Option Explicit
' 130821.AMG
Sub ListReferences()
Debug.Print "' References"
Debug.Print "' =========="
Debug.Print "'"
Debug.Print "' This module uses the following references (paths and GUIDs may vary)"
Debug.Print "'"
Dim ref As Variant
For Each ref In ThisWorkbook.VBProject.References
Debug.Print "' " & ref.Description & " (" & ref.fullpath & ") " & ref.GUID
Next
End Sub
Public Sub RemoveProject14Reference()
Dim ref, refs As Variant
Set refs = ActiveWorkbook.VBProject.References
For Each ref In refs
If ref.GUID = "{A7107640-94DF-1068-855E-00DD01075445}" Then
Debug.Print "Found " & ref.GUID
' source > http://support.microsoft.com/kb/308340
refs.Remove ref
'refs.AddFromFile "C:\Program Files\Microsoft Office\Office12\MSPRJ.OLB"
' MSProject Microsoft Project 12.0 Object Library (C:\Program Files\Microsoft Office\Office12\MSPRJ.OLB)
End If
Next
End Sub
Public Sub AddProject12Reference()
Dim ref, refs As Variant
Set refs = ActiveWorkbook.VBProject.References
refs.AddFromFile "C:\Program Files\Microsoft Office\Office12\MSPRJ.OLB"
' MSProject Microsoft Project 12.0 Object Library (C:\Program Files\Microsoft Office\Office12\MSPRJ.OLB)
End Sub