Re: [Python.NET] can i use LabVIEW VI in Python Script?

2008-10-15 Thread Matthew Zaleski
I have not done this but a quick Google gave this: http://mail.python.org/pipermail/python-win32/2006-July/004788.html Looking at the replies, folks are connecting via CPython on the .NET interface. In theory you can also access it via Python.NET. Can I say for sure? No. I'm still a lurker

[Python.NET] struct with no explicit constructor

2008-10-15 Thread Jeff Ames
Hello, I'm trying to create an instance of a struct that has no explicit constructor in C#, but in python I always get a TypeError. My test struct in C#: namespace Foo { public struct MyStruct { public int x; } } In python: mystruct = Foo.MyStruct() This gi