Description
Initializes the BDK ActiveX library for use. If your copy of the BDK is unauthorized, this will cause the authorization dialog to be displayed. You must call this function before calling any other BDK functions.
Failure to do so will cause a program crash. Be sure to call the Free method when you are finished with using the BDK.
Syntax
object.Free
Arguments
None.
Return Value
None.
Example
Sub Main()
BDKApp.Init
RunApplicationCode
BDKApp.Free
End Sub