Forum Discussion
3 Replies
- YMinaev
Staff
Hi,
Before calling a function from a DLL, you need to define this function and its parameters as it is described in the help. If you want to call multiple functions, you need to define them all one by one. There's no other way to call functions from Win32 DLLs. - tristaanogreEsteemed ContributorThe only other way I know of is if the DLL represents a COM object in which case you can instantiate it using Sys.OleObject() and then reference the functions that way.
- YMinaev
Staff
Hi,
In addition to Robert's post, you can also call functions from .NET assemblies by using a mechanism similar to 'include', but this won't work for non-COM Win32 DLLs.