Creates a new instance of an application object
(vlax-create-object prog-id)
Use vlax-create-object when you want a new instance of an application to be started, and an object of the type specified by <Component> (see the argument description) to be created. To use the current instance, use vlax-get-object . However, if an application object has registered itself as a single-instance object, only one instance of the object is created, no matter how many times you call vlax-create-object .
The application object (VLA-object).
Create an instance of a Microsoft Excel application:
(vlax-create-object "Excel.Application") #<VLA-OBJECT _Application 0017b894>