views:

136

answers:

2

Right, so I'm having a go at Iron Python Studio as I'm quite familiar with VS2005 and want to try Python with an integrated GUI designer. But as soon as I add a PictureBox I'm in trouble. When running the project I get complaints about BeginInit and soon enough the form designer stops working.
Is this because I'm running .NET 3.5 or some other compatibility issue? Couldn't find anything at the Iron Python Studio site

A: 

Have you checked out IronPython Blog on MSDN? You could probably drill down from there and find a definitive answer. If you do, be sure you update your question here!

Robert S.
+1  A: 

I'm having the same problem. What you can do is manually remove the BeginInit() and EndInit() calls, it should work fine then.

Huppie