dll loading?
-
.
-
Typically if you have shared assemblies they are placed in the GAC. You may want to read these How the Runtime Locates Assemblies[^] Locating the Assembly through Codebases or Probing[^]
only two letters away from being an asset
-
Add your directory name to the environment PATH variable. Windows searches these directories to find referenced dll files.
I think you may also want to read these How the Runtime Locates Assemblies[^] Locating the Assembly through Codebases or Probing[^]
only two letters away from being an asset
-
I think you may also want to read these How the Runtime Locates Assemblies[^] Locating the Assembly through Codebases or Probing[^]
only two letters away from being an asset
-
Hi I think that you are searching for the Assembly.Load method that load an assembly for dynamic invocation.
-
Given that you're creating them yourself, why not just put them in the right place ? c:\ is a RETARDED place to put dlls for your program.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
hi, if this dll is a com-dll you can register the dll with regsvr32 "C:\your_com.dll". To use the dll you need to declare the function like win32api in dotnet with a DllImport().. if the dll is a .net assembly load the dll with System.Reflection.Assembly.LoadFile(). don't know what you want to do or your program.. if you dont want to write code using the dlls try to reinstall your programm using the dlls :) greetings
-
hi, if this dll is a com-dll you can register the dll with regsvr32 "C:\your_com.dll". To use the dll you need to declare the function like win32api in dotnet with a DllImport().. if the dll is a .net assembly load the dll with System.Reflection.Assembly.LoadFile(). don't know what you want to do or your program.. if you dont want to write code using the dlls try to reinstall your programm using the dlls :) greetings
Thank you for our help. I´ll try it. THANKS at all:thumbsup: