VBA Advanced Excel - Usando o Late Bound - Using the CreateObject Function to Create a Late-Bound Instance of Excel


Segue um pequeno exemplo de utilização do Late Bound com o MS Excel

Sim, precisamos continuar treinando para não esquecermos. Lembre-se que a mesma técnica pode ser usada com qualquer outra aplicação da suite do MS Office.

Sub LateBinding()
    'Declare a generic object variable
    Dim objExcel As Object

    'Point the object variable at an Excel application object
    Set objExcel = CreateObject("Excel.Application")

    'Set properties and execute methods of the object
    With objExcel
        Let .Visible = True
        
Let .Workbooks.Add
        Let .Range("A1""Hello World"
    End With
End Sub

Tags: VBA, Excel Basic, tips, Example, Early, Binding,Late-Bound, Instance, CreateObject



Nenhum comentário:

Postar um comentário

diHITT - Notícias