Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

VBScript CreateObject Function

Creates and returns a reference to an Automation object. This should be used as a client-side only function. To create a server-side object, use Server.CreateObject. For more information, see the "Built-in Objects Reference" in this chapter.

Syntax: VBScript CreateObject Function

CreateObject(servername.typename)

Arguments: VBScript CreateObject Function

servername

The name of the application providing the object.

typename

The type or class of the object to create.

Remarks: VBScript CreateObject Function

Automation servers provide at least one type of object. For example, a word-processing application may provide an application object, a document object, and a toolbar object.

The following code returns the version number of an instance of Excel running on a remote network computer named "myserver":

Function GetVersion

   Dim XLApp

   Set XLApp = CreateObject("Excel.Application", "MyServer")

   GetVersion = XLApp.Version

End Function

Note

The CreateObject function will not work with the FileSystemObject if EnableParentPaths is False in the Sun Chili!Soft ASP registery. In this case you must use Server. CreateObject("Scripting.FileSystemObject").

To create an Automation object, assign the object returned by CreateObject to an object variable:

Dim ExcelSheet

Set ExcelSheet = CreateObject("Excel.Sheet")

This code starts the application creating the object (in this case, a Microsoft Excel spreadsheet). Once an object is created, you refer to it in code using the object variable you defined. In the following example, you access properties and methods of the new object using the object variable, ExcelSheet, and other Excel objects, including the Application object and the Cells collection. For example:

' Make Excel visible through the Application object.

ExcelSheet.Application.Visible = True

' Place some text in the first cell of the sheet.

ExcelSheet.Cells(1,1).Value = "This is column A, row 1"

' Save the sheet.

ExcelSheet.SaveAs "C:\DOCS\TEST.XLS"

' Close Excel with the Quit method on the Application object.

ExcelSheet.Application.Quit

' Release the object variable.

Set ExcelSheet = Nothing

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.