General

6.204 Come ottenere l'elenco dei riferimenti necessari
  Alessandro Baraldi
'------------------------------------------------------------------------------------------
' FUNZIONE PER ESTRARRE LA LISTA DELLE REFERENZE NECESSARIE
' Alessandro Baraldi
'------------------------------------------------------------------------------------------
Option Compare Database
Option Explicit
Function ListeReferences()
   Dim accRef As Access.Reference
   For Each accRef In Application.References
      With accRef
         If (.IsBroken = False) Then
            Debug.Print .Name, .Guid, .FullPath
         Else
            Debug.Print .Guid
         End If
      End With
   Next accRef
End Function
'------------------------------------------------------------------------------------------
'------------------------------------------------------------------------------------------


Se pensate di avere del materiale freeware interessante e volete pubblicarlo, allora leggete qui.