View Single Post
 
Old 09-14-2014, 08:31 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Basically, it could be anything that is VBA-compliant. Some you've missed out include the following MS-Office objects:
CreateObject("Outlook.Application")
CreateObject("Access.Application")
CreateObject("MSGraph.Application")
CreateObject("Visio.Application")

Other common ones include Adobe Acrobat Pro objects:
CreateObject("AcroExch.App")
CreateObject("AcroExch.AVDoc")

Then there are others, like:
CreateObject("ADODB.Recordset")
CreateObject("ADODB.Connection")
use for database queries, and:
CreateObject("Scripting.FileSystemObject")

See also: http://msdn.microsoft.com/en-us/libr...ffice.11).aspx
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote