Hello everyone,
I searched this forum for a list of objects that can be created using the CreateObject function.
I have also searched online and on the Microsoft development site but what I am noticing is that there is not a lot of information out there.
So here is my question using the CreateObject function what all can you create? Is there a list of the objects that can be created?
The only ones that I know of so far are below:
Code:
CreateObject("InternetExplorer.Applicaton")
CreateObject("Excel.Sheet")
CreateObject("Excel.Application")
CreateObject("Word.Application")
CreateObject("PowerPoint.Application")
Now these are just basic ones I know there are filesystem ones out there as well as httprequests but what I am looking for is a list of all the objects that can be created or at least the major ones. I notice that even though the above objects seem to follow a simple syntax you cannot simply create a notepad object like so
Code:
CreateObject("Notepad.Application")
Maybe thats because VBA cannot communicate with Notepad.
Anybody know of more of the major CreateObjects or a list of them? That would be awesome to add to my library.
Thanks for your help.