I was add to my program reference to dll and it’s work good.
Declare Function adc11_get_driver_version Lib “C:\example.dll” () As Integer
but I want to write the specific location of the dll from file(config file) and replace the “C:\example.dll” by string
how can I do this?
thanks
Saar
I think you need to do dynamic PInvoke. One way to do this is using the LoadLibrary function to load the library before .Net tries to find it. You can find some sample code here.