Top "Late-binding" questions

Late binding is a mechanism in which the method being called upon an object is looked up by name at runtime.

Question about CreateObject() in VB6 / VBA

I can do this: Dim fso As New FileSystemObject or I can do this: Dim fso As Object Set fso = …

vba vb6 late-binding createobject
C# DLL's plugin-architecture

I have a program that i developed to use a basic plugin architecture. Effectively, when the program loads it uses …

c# dll late-binding plugin-architecture
How to access Microsoft Word existing instance using late binding

i am developing some code in c# where i will be interacting with Microsoft Word. I want to be able …

c# automation ms-word late-binding activator
Will Function.prototype.bind() always be slow?

I am writing an open source javascript library, and I use .bind() method heavily, because I have an idea that …

javascript performance v8 spidermonkey late-binding
Convert Early Binding VBA to Late Binding VBA : Excel to Outlook Contacts

Each employee gets an updated contact list. I'm creating a macro in Excel that will delete all outlook contacts, then …

excel vba outlook late-binding early-binding
Late Binding vs. Polymorphism - what is the difference?

I've seen both used interchangebly but do they really mean the same? From my understanding, Polymorphism stretches the fact that …

oop polymorphism late-binding
How to do late binding in VBA?

I have this little function that achieves the creation of an email via VBA, It gets the data from another …

vba excel outlook late-binding
VB.NET: impossible to use Extension method on System.Object instance

Can I make an Extension method for all the subclasses of System.Object (everything)? Example: <Extension> Public Function …

.net vb.net object extension-methods late-binding
How to find out a COM prog id?

I'd like to access a COM library via late binding. How can I find out its progID? Type oClassType = Type.…

.net com late-binding progid