Thanks.
Edit: Tried on 32 bit labview on a 32 bit machine and it still fails.
Edited by for(imstuck), 13 April 2012 - 03:14 PM.
Posted 13 April 2012 - 03:00 PM
Edited by for(imstuck), 13 April 2012 - 03:14 PM.
Posted 13 April 2012 - 04:00 PM
Posted 13 April 2012 - 04:26 PM
Thanks, I will go the CLFN route.Not all dlls contain .NET metadata so they can't be loaded as .NET assemblies. I believe shell32 would be one of those. You would need to use LoadLibrary from the Win32 API to load it. Also you should just load it by name. The system will locate the appropriate copy.
Posted 14 April 2012 - 03:01 PM
Agreed, shell32.dll is not a dot NET assembly. I think there's an assembly viewer tool that comes with Visual Studio which would could point at any given DLL to check with, but I don't know of anything that comes with Windows off-hand.Not all dlls contain .NET metadata so they can't be loaded as .NET assemblies. I believe shell32 would be one of those. You would need to use LoadLibrary from the Win32 API to load it. Also you should just load it by name. The system will locate the appropriate copy.
Posted 16 April 2012 - 10:24 PM
Posted 18 April 2012 - 02:20 PM
Rolf Kalbermatter
CIT Engineering Netherlands
A division of Test & Measurement Solutions
Posted 18 April 2012 - 08:16 PM
Edited by for(imstuck), 18 April 2012 - 08:27 PM.