Re: How to catch System.IO.FileLoadException when starting application

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



Try subscribing to the static event AssemblyResolve to see if that
will allow you to catch this exception.

AppDomain.CurrentDomain.AssemblyResolve += new
ResolveEventHandler(AssemblyResolver);


public static System.Reflection.Assembly AssemblyResolver(object
sender, ResolveEventArgs e)
{
// return the proper assembly
}

========================
Clay Burch
Syncfusion, Inc.



.