Re: [IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Jeff Hardy
On Thu, Feb 3, 2011 at 9:28 AM, Lukas Cenovsky wrote: > It looks like IronPython cannot find your .dll. Check whether you have > MathHelpLib.dll along with all dependencies in your sys.path. ... which you can do from the host by calling engine.SetSearchPaths. - Jeff _

Re: [IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Lukas Cenovsky
It looks like IronPython cannot find your .dll. Check whether you have MathHelpLib.dll along with all dependencies in your sys.path. -- -- Lukás( On 3.2.2011 17:00, Brian Ashcroft wrote: Hello, I have an ironpython instance running within my application. This instance is used to control

Re: [IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Brian Ashcroft
onpython.com Subject: [IronPython] Loading a static lib a second time in hosted ironpython Hello, I have an ironpython instance running within my application. This instance is used to control the application. I have a math dll that I reference in the hosting application that I would like to be abl

[IronPython] Loading a static lib a second time in hosted ironpython

2011-02-03 Thread Brian Ashcroft
Hello, I have an ironpython instance running within my application. This instance is used to control the application. I have a math dll that I reference in the hosting application that I would like to be able to use also in the ironpython scripting. However, I get error messages when I try t