|
LoadNewDll | |
DLLNumber = LoadNewDll(Filename$) | |
Parameters: Filename$ = The file name and path of the DLL you wish to load |
|
Returns: DLLNumber = The index of this DLL number to use |
|
LoadNewDll will read a DLL from disk into your computer's memory for later use. Unlike LoadDll, you just provide this command with the path and filename of the DLL to load, and it will a allocate free DLL index for you. FACTS * You can only use standard DLLs. See: NewAX for ActiveX support. * Use GetDllExist to check if DLL has already been loaded. * Use GetDllCallExist to check if a function exists within a loaded DLL * Use DllCallConv to change the calling convention used to call functions from a DLL. Mini Tutorial: This example shows how to toggle the visibility of the mouse cursor using Windows' user32.dll.
|
Related Info: | DeleteDll | GetDLLCallExist | GetDllExist | GetDllFileName$ | GetDllStatus | GetFreeDll | LinkDll | LoadDLL | NewAx : |
|
|||||||||||||||||||||||||||||||||||||||
(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com |