kalebson,
One way might be to check if a certain file exists. Here is a sample test to see if the Microsoft Office Web Components Function Library (MSOWCF.DLL) exists in the standard directory.
Code:
Function TestForMSOWebComponentsFunctionLibrary() As Boolean
Dim strReturn As String
strReturn = Dir("C:\Program Files\Microsoft Office\Office\MSOWCF.DLL")
If strReturn <> "" Then
TestForWebComponents = True
End If
End Function
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.