can we load DLL at run time of our Application...
i dont want to add DLL the desgintime thru add referances
.......i want to add DLL when i need it to use.
a
regards
anand
Printable View
can we load DLL at run time of our Application...
i dont want to add DLL the desgintime thru add referances
.......i want to add DLL when i need it to use.
a
regards
anand
If these DLLs are references used in your app , then you can't (I mean data.dll or winform.dll ) . If they are doing extra job , like plug-ins , then you yes you can . Search this forum for Plugins example posted by Cander .
okey,,
i have made a DLL to call some info from another process.. . named test.dll
i dont want to use test.dll in referance, can i use its functions at the run time...with adding it in referance list
anand
That's what interfaces exactly do ! Have you read about it first !
The referenced DLL is not loaded when your applications starts. It is only loaded when you make a call to it. Just-In-Time Execution!
study this thread which is about dynamically loading dll's
http://www.vbforums.com/showthread.p...hlight=plugins