Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: Early Binding with Graph 9.0


View products that this article applies to.

This article was previously published under Q201710
This article applies to a Microsoft Access database (.mdb) and to a Microsoft Access project (.adp).

Advanced: Requires expert coding, interoperability, and multiuser skills.

↑ Back to the top


Summary

In Microsoft Graph 9.0, Microsoft Graph for the first time supports early binding. Early binding was not possible in earlier versions of Graph.

↑ Back to the top


More information

An easy way to see the difference between early and late binding is to look at the way objects are declared in code. Code that implements late binding includes the "As Object" definition when dimensioning the variable. Code that implements early binding declares the variable as a specific object type at the point at which the variable is dimensioned. For example, "As Excel.Application" would define a variable as an object, and specifically, an Excel object.

Example of Late Binding

Late binding means that the object type is declared at the same time that the object is created rather than at the time that the variable is defined. For example, to automate Microsoft Excel with late binding, you could use the following code:
Function Test()
    'Declare an object variable to hold an object reference.
    '"Dim <VariableName> As Object" indicates late binding.
    Dim ExcelSheet As Object
    Set ExcelSheet = CreateObject("Excel.Sheet")
End Function
				

Example of Early Binding

Early binding means that, as you dimension an object, the object class type is specified within the same statement rather than defining a generic object type. For example, to automate various Microsoft Excel objects with early binding, you could use the following code:
Function Test()
    'Requires a reference to the Microsoft Excel 9.0 Object Library.
    Dim xlApp As Excel.Application
    Dim xlBook As Excel.Workbook
    Dim xlSheet As Excel.WorkSheet

    Set xlApp = CreateObject("Excel.Application")
    Set xlBook = CreateObject("Excel.Workbook")
    Set xlSheet = CreateObject("Excel.Worksheet")
End Function
				

Early and Late Binding with Microsoft Graph

With earlier versions of Microsoft Graph, early binding was not possible. The only way to automate a Microsoft Graph object was with late binding, as shown in the following example:
Private Sub Command0_Click()
    Dim GraphObj As Object
    Set GraphObj = Forms!MyForm!MyGraph.Object
End Sub
				
In Microsoft Graph 9.0, late binding is no longer a requirement but an option. You can now early bind to a Graph object, as illustrated in the following sample code:
Private Sub Command0_Click()
    Dim GraphObj As Graph.Chart
    Dim GraphApp As Graph.Application

    Set GraphObj = Forms!MyForm!MyGraph.Object
    Set GraphApp = GraphObj.Application
End Sub
				
Microsoft Graph is not a stand-alone software program, as is Microsoft Access, Microsoft Excel, or Microsoft Word. Graph can only be used within other programs; for example, Graph can be used within Microsoft Access reports. Therefore, it is not possible to use the CreateObject function to instantiate a graph object, as was illustrated earlier when instantiating Excel objects. The only way by which you can automate a graph object is when that object first resides within another host application. The sample code above assumes that the graph object is being used in an Access form. The graph object instantiated in the sample code above is based on a graph that was first inserted on an Access form.

↑ Back to the top


References

For more information about Automation, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type automation with microsoft access in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

For more information about the CreateObject function, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type createobject function in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

For additional information late and early binding, click the article number below to view the article in the Microsoft Knowledge Base:
245115� INFO: Using Early Binding and Late Binding in Automation

↑ Back to the top


Keywords: KB201710, kbprb, kbnofix, kbdta

↑ Back to the top

Article Info
Article ID : 201710
Revision : 2
Created on : 12/12/2002
Published on : 12/12/2002
Exists online : False
Views : 269