Re: [Python.NET] System.IO.FileNotFoundException: Unable to find assembly 'MbtCom.dll'.

2009-04-14 Thread kfadnis
h which can be >> accomplished using sys.path.insert(0, 'mypath') >> >> >> >> >> >> >> >> *From:* pythondotnet-bounces+btribble=maxis@python.org [mailto: >> pythondotnet-bounces+btribble =maxis.com >> @python.org] *On Beha

Re: [Python.NET] System.IO.FileNotFoundException: Unable to find assembly 'MbtCom.dll'.

2009-04-14 Thread Tribble, Brett
2009 6:10 PM To: pythondotnet@python.org Subject: [Python.NET] System.IO.FileNotFoundException: Unable to find assembly 'MbtCom.dll'. Hi All, I know this is a very basic question, but despite all my efforts I haven't been able to load a third-party dll into python. I can find the dll usi

Re: [Python.NET] System.IO.FileNotFoundException: Unable to find assembly 'MbtCom.dll'.

2009-04-14 Thread kfadnis
ch can be > accomplished using sys.path.insert(0, 'mypath') > > > > > > > > *From:* pythondotnet-bounces+btribble=maxis@python.org [mailto: > pythondotnet-bounces+btribble =maxis.com@ > python.org] *On Behalf Of *kfadnis > *Sent:* Monday, April 13, 2009 6:10 PM &

Re: [Python.NET] System.IO.FileNotFoundException: Unable to find assembly 'MbtCom.dll'.

2009-04-14 Thread Craig Farrow
Try this: import sys sys.path.append("") import clr import System clr.AddReference("MbtCom") Craig. 14/04/2009 9:09 a.m. dï, kfadnis pišdimiš: Hi All, I know this is a very basic question, but despite all my efforts I haven't been able to load a third-party dll into python. I can find the

[Python.NET] System.IO.FileNotFoundException: Unable to find assembly 'MbtCom.dll'.

2009-04-13 Thread kfadnis
Hi All, I know this is a very basic question, but despite all my efforts I haven't been able to load a third-party dll into python. I can find the dll using clr.FindAssembly("MbtCom"). I also append the required path to the sys.path, but it refuses to show up. Is there something obvious I am missin