RE: [IronPython] PowerPoint Automation

2005-06-30 Thread Martin Maly
Hi, As for the "Visible" property. Reflecting on the Office Primary Interop Assemblies shows that PowerPoint's Visible property has different type than Word's one. Word is Boolean whereas PowerPoint has MsoTriState enum as type. It also seems that hiding the application window once visible is not

[IronPython] bug?

2005-06-30 Thread Luis M. Gonzalez
Hi all,   I post this here because I don't know how to describe it in the bug tracker. This simple code reads a text file and removes all the dots, parenthesis and signs from each word, which then is printed in the screen:   >>> f = open('c:/documents and settings/usuario1/escritorio/sw3.txt

[IronPython] PowerPoint Automation

2005-06-30 Thread kbond
Hello, I am still playing aound with the office Automation the last I try was PowerPoint and I was disapointed since I was willing to migrate a macro I have done a long time ago. This macro create a TOC to a ppt file. Import sys sys.LoadAssemblyByName("Microsoft.Office.Interop.PowerPoint") im

Re: [IronPython] error 0.7.6 with mono

2005-06-30 Thread Jeremy Jones
Forgot to mention I'm running Linux (Ubuntu Hoary). JJ Jeremy Jones wrote: Miguel de Icaza wrote: Hello, Hello friends, Ironpython 0.7.x already works with monkey (1.1.8) :D, with the version 0,7,5 everything works well apparently, but with version 0,7,6 it has p

Re: [IronPython] error 0.7.6 with mono

2005-06-30 Thread Jeremy Jones
Miguel de Icaza wrote: Hello, Hello friends, Ironpython 0.7.x already works with monkey (1.1.8) :D, with the version 0,7,5 everything works well apparently, but with version 0,7,6 it has problems, some idea? 0.7.6 uses some features from the .NET 2.x framework that have

[IronPython] Embedding.

2005-06-30 Thread Alan Kennedy
Greetings all, I've worked a lot with jython in the past, and have often made use of it by embedding it in java servers. I'd like to try the same thing with Ironpython. Is there any documentation on how to go about this? I'm specifically interested in writing ironpython "servlets", i.e. serv