From dvpdiner2 at yahoo.com Sun Oct 1 22:31:00 2006 From: dvpdiner2 at yahoo.com (Darryl Pogue) Date: Sun, 1 Oct 2006 13:31:00 -0700 (PDT) Subject: [Python.NET] ClrModule could not be found error? Message-ID: <20061001203100.87676.qmail@web31612.mail.mud.yahoo.com> Maksim wrote: { I am having the same issue, it seems that a module is missing from SVN. I was able to compile version 39. } I've checked-out a copy of the trunk at revision 39, but I'm running into the same missing ClrModule error. You said that you were able to compile version 39. What did you do to make it work properly? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/pythondotnet/attachments/20061001/235cd91d/attachment.html From mkozyarchuk at funddevelopmentservices.com Mon Oct 2 03:03:13 2006 From: mkozyarchuk at funddevelopmentservices.com (Maksim Kozyarchuk) Date: Sun, 1 Oct 2006 21:03:13 -0400 Subject: [Python.NET] ClrModule could not be found error? Message-ID: <8674D71026D5C848831DB7CA34B1C75803D068@fds1wmail01.funddevelopmentservices.com> I was able to compile version 38. :-) ________________________________ From: pythondotnet-bounces at python.org [mailto:pythondotnet-bounces at python.org] On Behalf Of Darryl Pogue Sent: Sunday, October 01, 2006 4:31 PM To: pythondotnet at python.org Subject: [Python.NET] ClrModule could not be found error? Maksim wrote: { I am having the same issue, it seems that a module is missing from SVN. I was able to compile version 39. } I've checked-out a copy of the trunk at revision 39, but I'm running into the same missing ClrModule error. You said that you were able to compile version 39. What did you do to make it work properly? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/pythondotnet/attachments/20061001/9cb57ee8/attachment.htm From Brian.Lloyd at revolution.com Mon Oct 2 05:30:45 2006 From: Brian.Lloyd at revolution.com (Brian Lloyd) Date: Sun, 1 Oct 2006 23:30:45 -0400 Subject: [Python.NET] ClrModule could not be found error? References: <8674D71026D5C848831DB7CA34B1C75803D068@fds1wmail01.funddevelopmentservices.com> Message-ID: <1CCEDFD0D1FF43419A44DA69B60B996056C108@MI8NYCMAIL17.Mi8.com> glad to hear you were able to compile it... I'm _really_ _really_ trying to make some time to at least tie up a stable 2.x-compatible release - its tough with my current schedule though. If anyone is out there chomping at the bit to contribute, please let me know ;) I don't want to be the blocker if others have the time to make some progress ;) -Brian From dvpdiner2 at yahoo.com Thu Oct 5 01:15:03 2006 From: dvpdiner2 at yahoo.com (Darryl Pogue) Date: Wed, 4 Oct 2006 16:15:03 -0700 (PDT) Subject: [Python.NET] ClrModule could not be found error? Message-ID: <20061004231504.18043.qmail@web31609.mail.mud.yahoo.com> I was able to compile it using a hack. I changed all occurences of ClrModule to ModuleObject and compiled it myself. It seems to be working great so far. Not knowing if there was supposed to be any additional functionality in the ClrModule class, I can't say if this is a suitable release or not. Great to hear that you're still trying to work on it Brian. Life slows everyone down sometimes. :) If you have the ClrModule class finished, just uploading it to SVN should be enough to make a stable 2.x release. ----- Original Message ---- From: Brian Lloyd To: Maksim Kozyarchuk ; Darryl Pogue ; pythondotnet at python.org Sent: Sunday, October 1, 2006 8:30:45 PM Subject: RE: [Python.NET] ClrModule could not be found error? glad to hear you were able to compile it... I'm _really_ _really_ trying to make some time to at least tie up a stable 2.x-compatible release - its tough with my current schedule though. If anyone is out there chomping at the bit to contribute, please let me know ;) I don't want to be the blocker if others have the time to make some progress ;) -Brian -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/pythondotnet/attachments/20061004/4313da12/attachment.htm From iamnader at gmail.com Sat Oct 28 00:26:55 2006 From: iamnader at gmail.com (Nader Akhnoukh) Date: Fri, 27 Oct 2006 15:26:55 -0700 Subject: [Python.NET] Question about RunString Message-ID: I have a very simple script, message.py: from CLR.System.Windows.Forms import MessageBox MessageBox.Show("hello"); If I run this from the console it works fine and I see the MessageBox. However, if I embed PythonNet in my .Net 1.1 C# app, Python loads correctly, no exceptions are thrown, but I don't see the MessageBox. This is the C# code: PythonEngine.Initialize(); IntPtr state = PythonEngine.AcquireLock(); StreamReader sr = File.OpenText("C:/message.py"); string pythoncode = sr.ReadToEnd(); sr.Close(); PythonEngine.RunString(pythoncode); PythonEngine.ReleaseLock(state); Any idea what's going on? Thanks, n -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/pythondotnet/attachments/20061027/b5de689f/attachment.htm From kuno.meyer at helbling.ch Mon Oct 30 13:24:56 2006 From: kuno.meyer at helbling.ch (Meyer Kuno (Helbling Technik)) Date: Mon, 30 Oct 2006 13:24:56 +0100 Subject: [Python.NET] Build instructions Message-ID: <8DCCD0BC79570748BAE411BA59328A8E66EA54@htkasrv004.helbling.wan> Hi all. The current HEAD version (revno 39) of Python.NET has compliation problems due to a missing ClrModule class. The previous revision 38 seems to compile under .NET 2.0. Does anyone know the correct repository version / setup to generate the binaries with "nant -t:net-1.1"? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/pythondotnet/attachments/20061030/2712109b/attachment.html From brian.lloyd at revolution.com Mon Oct 30 14:18:07 2006 From: brian.lloyd at revolution.com (Brian Lloyd) Date: Mon, 30 Oct 2006 09:18:07 -0400 Subject: [Python.NET] Build instructions In-Reply-To: <8DCCD0BC79570748BAE411BA59328A8E66EA54@htkasrv004.helbling.wan> Message-ID: You should be able to checkout pythonnet-1.0-branch to get the latest stable set for 1.1. -Brian On 10/30/06 8:24 AM, "Meyer Kuno (Helbling Technik)" wrote: > Hi all. > > The current HEAD version (revno 39) of Python.NET has compliation problems due > to a missing ClrModule class. The previous revision 38 seems to compile under > .NET 2.0. > > Does anyone know the correct repository version / setup to generate the > binaries with "nant -t:net-1.1"? > > Thanks > > > _________________________________________________ > Python.NET mailing list - PythonDotNet at python.org > http://mail.python.org/mailman/listinfo/pythondotnet -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.python.org/pipermail/pythondotnet/attachments/20061030/5b35e7d0/attachment.htm