FreeLibrary Function

Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: Declare

სინტაქსი

FreeLibrary (LibName As String)

Parameters:

LibName: String expression that specifies the name of the DLL.

შენიშვნის ხატულა

FreeLibrary can only release DLLs that are loaded during Basic runtime.


Error codes:

D'oh! You found a bug (text/sbasic/shared/00000003.xhp#err5 not found).

მაგალითი:

Declare Sub MyMessageBeep Lib "user32.dll" Alias "MessageBeep" ( Long )

Sub ExampleDeclare

Dim lValue As Long

    lValue = 5000

    MyMessageBeep( lValue )

    FreeLibrary("user32.dll" )

End Sub