What is early binding and late binding?
preetam sharma
Select an image from your device to upload
When a call to a method is resolved during compile time, it is called early binding. And if it is resolved during runtime, it is called late binding.
Early binding:
Manually binding the Object file is called early binding
eg .
Dim oExcel As Excel.Application Set oExcel = CreateObject("Excel.Application")
and
Late binding has the same effect as early binding. The difference is
that you bind the object library in code at run-time.
Dim oExcel As Excel.Object Set oExcel = CreateObject("Excel.Application")