Hi,
You can unload dll's, but only if you loaded them yourself (with
LoadLibrary).
The problem then becomes you have to call a function (having only a pointer
to the function). This can be solved with external code...
I have a library (used to create "universal" callback functions) that can
call a function with arbitrary number of parameters. Like always with dlls,
the number of parameters and the type of each parameter has to be correct,
or LV will crash.
Regards,
Wiebe.
"mmcneary" wrote in message
news:50650000000800000044F80000-1079395200000@exchange.ni.com...
> I've noticed that when I load a dll using a call library function node
> LabVIEW holds that dll in memory until I exit LabVIEW. Is there a way
> to release that dll such that I c
ould call and close it
> programmatically?