P
Peter Morris [Droopy eyes software]
Hi
I have created a simple C# WinForms app which executes a subroutine within
an assembly. As soon as I try to do anything with this assembly I get a
System.MissingMethodException
public unsafe void DoSomething()
{
Text = "Calculating";
TheSubroutineObject.Run();
}
public void button1_click(object sender, System.EventArgs e)
{
DoSomething();
}
When clicking the button, the exception seems to be raised *before* the Text
= "Calculating" line rather than after TheSubroutine.Run() - I find this to
be very strange.
Should I see the DLL in question in program files\MyApp along with my EXE?
Thanks
--
Pete
====
ECO Modeler, Audio compression components, DIB graphics controls,
FastStrings
http://www.droopyeyes.com
Read or write articles on just about anything
http://www.HowToDoThings.com
My blog
http://blogs.slcdug.org/petermorris/
I have created a simple C# WinForms app which executes a subroutine within
an assembly. As soon as I try to do anything with this assembly I get a
System.MissingMethodException
public unsafe void DoSomething()
{
Text = "Calculating";
TheSubroutineObject.Run();
}
public void button1_click(object sender, System.EventArgs e)
{
DoSomething();
}
When clicking the button, the exception seems to be raised *before* the Text
= "Calculating" line rather than after TheSubroutine.Run() - I find this to
be very strange.
Should I see the DLL in question in program files\MyApp along with my EXE?
Thanks
--
Pete
====
ECO Modeler, Audio compression components, DIB graphics controls,
FastStrings
http://www.droopyeyes.com
Read or write articles on just about anything
http://www.HowToDoThings.com
My blog
http://blogs.slcdug.org/petermorris/