What is meant by "Early Binding" and "Late Binding"? Which
is better?
Answer / guest
Early binding and late binding refer to the method used to
bind an interface's properties and methods to an object
reference (variable). Early binding uses type library
information at design time to reference procedures, while
late binding handles this at run time. Late binding
handles this by interrogating the reference before each
call to insure that it supports a particular method. Since
every call to a late bound object actually requires two
calls ("Do you do this?" followed by "Okay, do it then"),
late binding is much less efficient than early binding.
Except where early binding is not supported (ASP,
scripting, etc.), late binding should only be used in very
special cases.
It is a common misconception that any code using the
CreateObject function instead of Set = New is using late
binding. This is not the case. The type declaration of
the object variable determines whether it is late or early
bound, as in the following:
Dim A As Foo
Dim B As Foo
Dim C As Object
Dim D As Object
Set A = New Foo 'Early Bound
Set B = CreateObject("FooLib.Foo") 'Early Bound
Set C = CreateObject("FooLib.Foo") 'Late Bound
Set D = New Foo 'Late Bound
| Is This Answer Correct ? | 6 Yes | 3 No |
Scope of API's can be of types, what are they?
What is dao in vba?
What is ActiveX Control?
What is OLEDB?
Explain the differences between ActiveX Dll and ActiveX Exe?
How would you use ActiveX Dll and ActiveX Exe in your application?
Is VB comes under Object Oriented Programming ?
Dim X,Y as Integer Here what is the datatype of X and Y ?
Differentiate between DAO,ADO and Adodc as in data access objects?
What is passing by reference?
What is the use of Immediate, Local Window?
To validate a range of values for a property whenever the property values changes,which type of property procedure you use?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)