Difference between a function and a subroutine, Dynaset and napshot, early and late binding, image and picture controls, Linked Object and Embedded Object, list box and combo box, List index and Tab index, modal and modules window, Object and Class, Query unload and unload in form, declaration and Instantiation an object?

Questions by Beena   answers by Beena

Showing Answers 1 - 9 of 9 Answers

Upendra

  • Jul 30th, 2007
 

A function can return a value but a subroutine cant.

vivek

  • Dec 14th, 2011
 

Early Binding: Manually binding the OLB file is called early binding. Its "early" because you are exposing the object model during design-time, as opposed to during run-time.
Sub CheckBinding()

Dim Dict As Dictionary

Set Dict = New Dictionary

Dict.add "A","AAA"
Here we already add the refrance "Scripting.runtime" using Tools>Refrances.

End Sub

Late Binding:Late binding has the same effect as early binding. The difference is that you bind the object library in code at run-time.
Sub CheckBindingLB()

Dim DIct

Set Dict = CreateObject("Scripting.Dictionary")

End Sub

  Was this answer useful?  Yes

zakir khan

  • May 29th, 2012
 

Tab index is associated with tab button, i.e. when we press tab then it moves to next element
snd list index is associated with List box controls items present in List Box

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions