Contents Previous Next


Free (BDKApplication Object)

Description

Frees the BDK ActiveX library. You should call this routine after you have finished using the BDK. Failure to call this routine may cause a memory leak. Calling any other BDK functions after calling Free will result in a program crash. Use the Init method to initialize the BDK.

Syntax

object.Free

Arguments

None.

Return Value

None.

Example

Sub Main()
    BDKApp.Init
    RunApplicationCode
    BDKApp.Free
End Sub