6

I like scripting, I don't like to reinvent the wheel, so I like CreateObject
Can you please point me to a extense and useful list of objects that can be used on VBScript with a brief description. Really I haven't found a site with more than 50.

Thanks in advance

Luis Siquot
  • 6,263
  • 3
  • 29
  • 52
  • CreateObject creates COM objects you want as to list all COM implementations? - Could you ask at least what you are trying to do. – James Kyburz Apr 14 '11 at 18:00
  • yes, order by name, relevance, tag (will be great if they are taged), manufacturer, licence, # of example code, and so on. I know there are millons, do you know a site whit top 1000 user-favorites? I don't, and I can't find. Thanks – Luis Siquot Apr 14 '11 at 18:07

1 Answers1

8

I don't know of any such list myself, but I know that your own computer is the first place to start looking. Depending on what software you've installed, you will already have hundreds if not thousands of COM objects available to play with.

One way to see what's available is by looking under Tools> References in the VBA editor within Word or other Office products. Then include a reference, and go to the Object Browser to see its methods and properties.

If you don't have Office installed, there are other ways to list the COM interfaces on your machine using VBScript. Take a look at Rob van der Woude's VBScript Scripting Techniques - Editors, IDEs & Object Browsers page where he describes some programs that provide an object browser.

He also gives a script that shows how to list ProgIds from your registry. I have over 3000 on my machine. Not all will have scriptable interfaces, but many will. .NET alone has hundreds of useful objects, and all are documented on MSDN. Once you have an interesting looking ProgId, do a Google search to find more about it.

Todd
  • 5,361
  • 2
  • 17
  • 18