I donβt know any such list, but I know that your own computer is the first place to start looking. Depending on what software you have installed, you already have hundreds, if not thousands of COM objects available for the game.
One way to find out what's available is by looking at Tools> Links in the VBA editor in Word or other Office products. Then enable the link and go to Object Browser to view its methods and properties.
If you do not have Office installed, there are other ways to list the COM interfaces on your computer using VBScript. Take a look at the Rob van der Woude VBScript Scripting Techniques - Editors, IDEs and Object Browsers page , where he describes some of the programs that provide an object browser.
It also gives a script that shows how to list ProgIds from the registry. I have over 3,000 on my car. Not everyone will have scripting interfaces, but many will. Only .NET contains hundreds of useful objects, and all of them are documented in MSDN. Once you have an interesting ProgId, do a Google search to find out more about it.
source share