Here I have an older function of mine to find and list installed ActiveX controls, so you can use some of them to show in your Gui. #include <Array.au3> Local $aCOMObjects = _GetCOMObjectControls() _ArrayDisplay($aCOMObjects, "All") $aCOMObjects = _GetCOMObjectControls("Control") _ArrayDisplay($aCOMObjects, "Control") GUICreate("COM-Test", 620, 500) Local $oFileSearch = ObjCreate("CompatUI.SelectFile.1") Local $oPivot = ObjCreate("OWC11.PivotTable.11") If IsObj($oFileSearch) Then G