It is best to use External Library references (Early Binding) while developing your code. Early Binding has the advantages of both intellisense and Help documentation. A major disadvantage of Early Binding is that it requires the reference to be updated if a different version of the library is installed. This is way it is best to remove the external references and convert code to Late Binding before distributing it.
Late binding uses CreateObject
to import and instantiate a class object.
CreateObject("Excel.Application").Wait (Now + TimeValue("00:00:05"))
Alternatively, you could reference the WinApi Sleep
function.
Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)
Usage:
Sleep 3000 '3000 Milliseconds = 3 second delay
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…