I am trying to learn the important differences between using Early & Late binding. Below is a summary of what I have noted so far:
- Reference Libraries: Early = Required, Late = Doesn't use (? see post by Kyle123)
- Speed: Early = slightly faster, Late = slightly slower
- Intellisense: Early = Uses, Late = Doesn't use
- Compatibility: Early = Low, Late = High (? see post by Kyle123)
My questions:
- Is there anything in the above summary that I have incorrect?
- Is there any important difference not in the above summary that I should be including?
- When using binding I am more concerned about compatibility for other uses (more than speed increase). Would it be an idea to write the code in Early (for Intellisense) then convert the code to Late after it is working correctly?
Bookmarks