Click here to Skip to main content
15,923,281 members
Home / Discussions / C#
   

C#

 
GeneralRe: MySQL access Pin
Joshua Nussbaum28-Apr-03 11:04
Joshua Nussbaum28-Apr-03 11:04 
GeneralPrinting images Pin
trythat28-Apr-03 7:01
trythat28-Apr-03 7:01 
QuestionWill VS.NET 2002 Projects work in 2K3? Pin
CyberKewl28-Apr-03 1:34
CyberKewl28-Apr-03 1:34 
AnswerRe: Will VS.NET 2002 Projects work in 2K3? Pin
2sky28-Apr-03 8:14
2sky28-Apr-03 8:14 
AnswerRe: Will VS.NET 2002 Projects work in 2K3? Pin
Stephane Rodriguez.28-Apr-03 20:26
Stephane Rodriguez.28-Apr-03 20:26 
AnswerRe: Will VS.NET 2002 Projects work in 2K3? Pin
Daniel Turini29-Apr-03 1:03
Daniel Turini29-Apr-03 1:03 
GeneralConnect to SQL Server & different port Pin
mkomasi27-Apr-03 20:37
mkomasi27-Apr-03 20:37 
GeneralRe: Connect to SQL Server & different port Pin
Vasudevan Deepak Kumar27-Apr-03 21:52
Vasudevan Deepak Kumar27-Apr-03 21:52 
Generalc# change default text at runtime Pin
Anonymous27-Apr-03 20:21
Anonymous27-Apr-03 20:21 
GeneralRe: c# change default text at runtime Pin
Andres Manggini28-Apr-03 10:38
Andres Manggini28-Apr-03 10:38 
GeneralRe: c# change default text at runtime Pin
Anonymous29-Apr-03 11:15
Anonymous29-Apr-03 11:15 
GeneralC# (CRL) RichTextBox Control and Fonts Pin
KingTermite27-Apr-03 13:23
KingTermite27-Apr-03 13:23 
GeneralRe: C# (CRL) RichTextBox Control and Fonts Pin
Kannan Kalyanaraman27-Apr-03 19:37
Kannan Kalyanaraman27-Apr-03 19:37 
GeneralASP.NET, C#, XML GHETTO STEEZ Pin
eggie527-Apr-03 12:46
eggie527-Apr-03 12:46 
GeneralRe: ASP.NET, C#, XML GHETTO STEEZ Pin
Chris Austin27-Apr-03 17:14
Chris Austin27-Apr-03 17:14 
GeneralRe: ASP.NET, C#, XML GHETTO STEEZ Pin
eggie528-Apr-03 15:37
eggie528-Apr-03 15:37 
GeneralA complex one..... Pin
Jon Newman27-Apr-03 5:40
Jon Newman27-Apr-03 5:40 
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

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.