Jump to content

Late Binding

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
Paradine

Paradine

    Learning Programmer

  • Members
  • PipPipPip
  • 48 posts
I was told to use Late Binding in a program that I am making but I have no idea what it is or how to use. Could someone explain and give an example?

#2
Void

Void

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 411 posts

Quote

Late binding has the same effect as early binding. The difference is that you bind the object library in code at run-time. You don't use Tools-References as with early binding, but rather you use the GetObject or CreateObject functions. The code below does the same thing as CheckBinding above, but uses late binding.

http://www.****s-cli...tm#Late_Binding
Void