Click here to Skip to main content
15,897,518 members
Home / Discussions / C#
   

C#

 
GeneralRe: A complex one..... Pin
leppie27-Apr-03 6:20
leppie27-Apr-03 6:20 
GeneralRe: A complex one..... Pin
Jon Newman27-Apr-03 6:31
Jon Newman27-Apr-03 6:31 
GeneralRe: A complex one..... Pin
leppie27-Apr-03 7:19
leppie27-Apr-03 7:19 
GeneralRe: A complex one..... Pin
James T. Johnson27-Apr-03 13:03
James T. Johnson27-Apr-03 13:03 
GeneralRe: A complex one..... Pin
Jon Newman27-Apr-03 13:46
Jon Newman27-Apr-03 13:46 
GeneralRe: A complex one..... Pin
Mark Smithson27-Apr-03 21:43
Mark Smithson27-Apr-03 21:43 
GeneralRe: A complex one..... Pin
Jon Newman28-Apr-03 5:51
Jon Newman28-Apr-03 5:51 
GeneralRe: A complex one..... Pin
Mark Smithson28-Apr-03 8:10
Mark Smithson28-Apr-03 8:10 
I'm not really sure what you mean by 'loaded and working'. You code and the errors imply that the CLR cannot load a type.

This is because your plugin directory is not in the probing path for the application. Your will either need to change your applications config file to include this directory, or manually load the assemblies.

Try adding the following to your app.config file
<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <probing privatePath="plugins"/>
      </assemblyBinding>
   </runtime>
</configuration>


Also have a look at the following MSDN link for further information on the how the CLR locates assemblies

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconhowruntimelocatesassemblies.asp

Regards

Mark Smithson
GeneralRe: A complex one..... Pin
Jon Newman28-Apr-03 11:53
Jon Newman28-Apr-03 11:53 
GeneralMarshalling char** Pin
leppie27-Apr-03 2:42
leppie27-Apr-03 2:42 
GeneralRe: Marshalling char** Pin
Stephane Rodriguez.27-Apr-03 7:25
Stephane Rodriguez.27-Apr-03 7:25 
GeneralRe: Marshalling char** Pin
leppie27-Apr-03 7:59
leppie27-Apr-03 7:59 
GeneralRe: Marshalling char** Pin
Stephane Rodriguez.27-Apr-03 8:05
Stephane Rodriguez.27-Apr-03 8:05 
GeneralRe: Marshalling char** Pin
leppie27-Apr-03 8:42
leppie27-Apr-03 8:42 
GeneralRe: Marshalling char** Pin
Stephane Rodriguez.27-Apr-03 9:00
Stephane Rodriguez.27-Apr-03 9:00 
GeneralImportRow Question Pin
2sky27-Apr-03 1:50
2sky27-Apr-03 1:50 
GeneralRe: ImportRow Question Pin
Andres Manggini27-Apr-03 17:44
Andres Manggini27-Apr-03 17:44 
GeneralRe: ImportRow Question Pin
2sky28-Apr-03 8:09
2sky28-Apr-03 8:09 
Generalquestion about treeview control Pin
Robin Vane26-Apr-03 20:53
Robin Vane26-Apr-03 20:53 
GeneralRe: question about treeview control Pin
Meysam Mahfouzi27-Apr-03 17:13
Meysam Mahfouzi27-Apr-03 17:13 
GeneralIIS's FTP Pin
paulwhygle26-Apr-03 16:21
paulwhygle26-Apr-03 16:21 
GeneralRe: IIS's FTP Pin
Ray Cassick26-Apr-03 18:44
Ray Cassick26-Apr-03 18:44 
QuestionProgressBar -Simple???? Pin
gman4426-Apr-03 14:14
gman4426-Apr-03 14:14 
AnswerRe: ProgressBar -Simple???? Pin
Jon Newman27-Apr-03 6:23
Jon Newman27-Apr-03 6:23 
AnswerRe: ProgressBar -Simple???? Pin
Richard Deeming29-Apr-03 1:09
mveRichard Deeming29-Apr-03 1:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.