GetObject Function

Description

Retrieves an OLE Automation object from a file.

Syntax

GetObject([pathname][, class])

The GetObject function syntax has these named arguments:

Part

Description

pathname

The full path and name of the file containing the object to retrieve. If pathname is omitted, class is required.

class

A string representing the class of the object.


The class argument uses the syntax “appname.objecttype” and has these parts:

Part

Description

appname

The name of the application providing the object.

objecttype

The type or class of object to create.


Remarks

Use the GetObject function to access an OLE Automation object from a file and assign the object to an object variable. To do this, use the Set statement to assign the object returned by GetObject to the object variable. For example:


Dim CADObject As ObjectCADObject = GetObject("C:\CAD\SCHEMA.CAD")

When this code is executed, the application associated with the specified pathname is started and the object in the specified file is activated.

If pathname is a zero-length string (""), GetObject returns a new object instance of the specified type. If the pathname argument is omitted entirely, GetObject returns a currently active object of the specified type. If no object of the specified type exists, an error occurs.

The above example shows how to activate an entire file. However, some applications allow you to activate part of a file. To do this, add an exclamation point (!) to the end of the filename and follow it with a string that identifies the partof the file you want to activate. For information on how to create this string, see the documentation for the application that created the object.

For example, in a drawing application you might have multiple layers to a drawing stored in a file. You could use the following code to activate a layer within a drawing called SCHEMA.CAD:


Set LayerObject = GetObject("C:\CAD\SCHEMA.CAD!Layer3")

If you do not specify the object’s class, based on the filename you provide, OLE determines the application to start and the object to activate. Some files, however, may support more than one class of object. For example, a drawing might support three different types of objects: an application object, a drawing object, and a toolbar object, all of which are part of the same file. To specify which object in a file you want to activate, use the optional class argument. For example:


Dim MyObject As ObjectMyObject = GetObject("C:\DRAWINGS\SAMPLE.DRW", "FIGMENT.DRAWING")

In the above example, FIGMENT is the name of a drawing application and DRAWING is one of the object types it supports.

Once an object is activated, you reference it in code using the object variable you defined. In the above example, you access properties and methods of the new object using the object variable MyObject. For example:


MyObject.Line 9, 90.InsertText 9, 100, "Hello, world.".SaveAs "C:\DRAWINGS\SAMPLE.DRW"

Note Use the GetObject function when there is a current instance of the object, or if you want to create the object with a file already loaded. If there is no current instance, and you don’t want the object started with a file loaded, use the CreateObject function.

If an object has registered itself as a single-instance object (for example, the Word.Basic object in Microsoft Word 6.0), only one instance of the object is created, no matter how many times CreateObject is executed. In addition, with a single-instance object, GetObject always returns the same instance when called with the zero-length string syntax (""), and it causes an error if the pathname argument is omitted. You cannot use GetObject to obtain a reference to a class created with Visual Basic.

See Also

CreateObject Function, Set Statement.

Example

This example uses the GetObject function to get a reference to a specific Microsoft Excel Worksheet (MyXL). It uses the worksheet’s Application property to make Microsoft Excel visible, to close it, and so on. The first call to GetObject causes an error if Microsoft Excel is not already running. In the example, the error causes the ExcelWasNotRunning flag to be set to True. The second call to GetObject specifies a file to open. If Microsoft Excel is not already running, this second call starts it, and returns a reference to the worksheet represented by the specified file. The file, MYTEST.XLS in the example, must exist in the specified location; otherwise the Visual Basic error OLE Automation error is generated. Next, the example code makes both Microsoft Excel and the window containing the specified worksheet visible. Finally, if there was no previous version of Microsoft Excel running, the code uses the Application object’s Quit method to close Microsoft Excel. If the application was already running, no attempt is made to close it. The reference itself is released by setting it to Nothing.


Dim MyXL As Object                    ' Variable to hold reference
                                    ' to Microsoft Excel.ExcelWasNotRunning As Boolean    ' Flag for final release.

' Test to see if there is a copy of Microsoft Excel already running.Error Resume Next                    ' Defer error trapping.
' GetObject function called without the first argument returns a 
' reference to an instance of the application. If the application isn't
' running, an  error occurs. Note the comma used as the first argument
' placeholder.MyXL = GetObject(, "Excel.Application")Err.Number <> 0 Then ExcelWasNotRunning = True.Clear                            ' Clear Err object in case error
                                    ' occurred.

' Set the object variable to reference the file you want to see.MyXL = GetObject("c:\vb4\MYTEST.XLS")

' Show Microsoft Excel through its Application property. Then
' show the actual window containing the file using the Windows
' collection of the MyXL object reference..Application.Visible = True.Parent.Windows(1).Visible = True
                                    ' Do manipulations of your
                                    ' file here.
                                    ' ...
' If this copy of Microsoft Excel was not already running when you
' started, close it using the Application property's Quit method.
' Note that when you try to quit Microsoft Excel, the Microsoft Excel
' title bar blinks and Microsoft Excel displays a message asking if you
' want to save any loaded files.ExcelWasNotRunning = True Then MyXL.Application.Quit
MyXL = Nothing                    ' Release reference to the
                                    ' application and spreadsheet.