Hi,
I need to unload a DLL of which I know only the name. I have as?
Unload dll
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Vilian,
Try this:
Try this:
Code: Select all
while GetModuleHandle( cDllName ) ) != 0
FreeLibrary( GetModuleHandle( cDllName ) )
SysRefresh()
end