Hi Gurus

I have an application that is throwing an exception when the main form is created.

Code:
Application.Run(new frmMain());
This throws the following exception -
Code:
System.IO.FileNotFoundException was unhandled
  Message="The specified module could not be found. (Exception from HRESULT: 0x8007007E)"
  Source="ConfigurationTool"
  StackTrace:
       at ConfigurationTool.frmMain..ctor()
       at ConfigurationTool.frmMain.Main() in C:\NGC\source\Configuration Tool\ConfigurationTool\frmMain.cs:line 490
       at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
Does anyone have any idea what is going on?

Thanks in advance

Graham