Thanks to all on the list. Jeff Hardy hooked me up.
- Chaim
On Wed, Feb 1, 2012 at 10:01 AM, Chaim Krause wrote:
> I built my program against the release of IronPython 2.7.1 and that used
> .NET v4. I found out now that the network I must deploy my program to
> before the week is
I built my program against the release of IronPython 2.7.1 and that used
.NET v4. I found out now that the network I must deploy my program to
before the week is over, is running .NET v3.5 SP1 and can/will not update
to v4 for the foreseeable future. This means I need to use a version of
IronPython
I spend many of my days using pydev in eclipse on cpython development
for Windows.
I'd like to get more efficient with the *tools*, practices and
idiosyncrasies of working with VS 2010, IronPython, and .NET.
I find it frustrating, often screaming, "I know exactly how to do this
in eclipse. H
beta?
Can somebody else on the list who hasn't moved to the beta test this
and see if it is a regression or has existed in prior versions?
With you input I will open/update a bug on this topic.
On Tuesday, July 05, 2011 11:38:22 AM, Chaim Krause wrote:
I tried that, with no luck.
Howev
, 2011 11:21:48 AM, Jeff Hardy wrote:
Hi Chaim,
My guess is that it can't find the wpf module - which, in 2.7 at
least, is IronPython.Wpf.dll. You'll probably need to put that file
(from the DLLs directory of IronPython) into the same folder as your
.exe.
- Jeff
On Tue, Jul 5, 2011 at 6:59
Runs fine in IronPython IDE /Visual Studio 2010, but...
Using minimal code:
import wpf
from System.Windows import Application, Window
class MyWindow(Window):
def __init__(self):
wpf.LoadComponent(self, 'WpfApplication1.xaml')
if __name__ == '__main__':
Application().Run(MyWin