Early vs. Late Binding Article contributed by Dave Rado There are two ways to use Automation (or OLE Automation) to programmatically control another application. Late binding uses CreateObject to create and instance of the application object, which you can then control. For example, to create a new instance of Excel using late binding: Dim oXL As Object Set oXL = CreateObject(“Excel.Application”)…
View On WordPress










