[IronPython] SQLite

2009-07-29 Thread Kelie
Hello, Is SQLite currently supported in IronPython? If not, is SQLite .NET from http://sqlite.phxsoftware.com/ the best alternative? Thanks. ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Problem with Creating Executable using SharpDevelop

2009-07-24 Thread Kelie
> On Jul 17, 10:07 am, Bruce Bromberek > > Make sure the Target machine has been upgraded to .Net 3.5 SP1.  Don't take > > any flack - make them upgrade.* This fixed the problem. Works on both XP and Vista. Thanks again Bruce! ___ Users mailing list Use

Re: [IronPython] Problem with Creating Executable using SharpDevelop

2009-07-20 Thread Kelie
On Jul 17, 10:07 am, Bruce Bromberek wrote: > Look at your references to the 5 ironpython DLLs.  Decide right now:  Are > you going to use the ones that ship with SharpDevelop or the ones using that > come with IronPython.  Choose one and be consistent. > > I'm still working though how to Build a

Re: [IronPython] Problem with Creating Executable using SharpDevelop

2009-07-20 Thread Kelie
On Jul 10, 6:46 pm, Curt Hagenlocher wrote: > It would probably be more immediately useful if you were to provide > the specific error message and a listing of the directory from which > you're trying to run the program. Given that it works on at least one > machine, it's likely to be context-rela

Re: [IronPython] Problem with Creating Executable using SharpDevelop

2009-07-10 Thread Kelie
On Jul 10, 6:03 am, Dino Viehland wrote: > In general you need IronPython to be present to run IronPython apps - even > if they're compiled.  And IronPython will need to be next to the app > unless IronPython has been installed into the GAC (which we do not > do by default).  Also you probably wan

[IronPython] Problem with Creating Executable using SharpDevelop

2009-07-09 Thread Kelie
; because I see those .dll files for IronPython in this folder "C: \Program Files\SharpDevelop\3.0\AddIns\AddIns\BackendBindings \PythonBinding" which are dated Feb 2009. Guess they're not the latest. Thanks, Kelie ___ Users mailing list U

Re: [IronPython] events in PowerPoint

2008-06-26 Thread Kelie
Try the code below. It works in my test, using Microsoft Office 2003 and IronPython 2. import time import clr from System.Runtime.InteropServices import Marshal clr.AddReference("Microsoft.Office.Interop.PowerPoint") import Microsoft.Office.Interop.PowerPoint as PowerPoint def onWindowSelectionCh

Re: [IronPython] events in PowerPoint

2008-06-25 Thread Kelie
Not sure if this will help. I wrote something like this a while back, probably using IronPython 1.1. And it was for a different software. import clr from System.Runtime.InteropServices import Marshal clr.AddReference("Microsoft.Office.Interop.PowerPoint") import Microsoft.Office.Interop.PowerPoint

Re: [IronPython] IronPython Studio

2007-12-12 Thread Kelie
Hello, Does anyone know where to specify library path for standard python modules? In IronPython installation, there is a Lib folder which has a file named site.py. It can be used to specify the library path. In IronPython Studio, I could not figure out how to solve this problem. Thank you!

Re: [IronPython] i thought this is odd: using Interop on Microsoft Word

2007-11-02 Thread Kelie
On Nov 1, 10:14 pm, Shri Borde <[EMAIL PROTECTED]> wrote: > This could be fixed in IronPython but currently its expected. > > docs[1] is calling into this indexer in Microsoft.Office.Interop.Word.dll. > The indexer method takes the index by-reference. Ie as "object&" instead of > just "object".

[IronPython] i thought this is odd: using Interop on Microsoft Word

2007-11-01 Thread Kelie
ocs[1][0].FullName This is the code that i tested. For the last couple of lines, i was expecting that docs[1] and docs[2] would return the document object instead of a tuple with the first of its item being the document. Is this the intended behavior? Thank you, -- Kelie __

[IronPython] list of python built-in modules that are NOT supported by IronPython available?

2007-10-24 Thread Kelie
Hello, Is there a list of python built-in modules that are NOT supported by IronPython? I just tried importing sqlite3 module and failed. Thanks, -- Kelie ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users

[IronPython] word wrap problem with posts from this newsgroup

2007-10-02 Thread Kelie
hello, why many posts in this newsgroup don't wrap properly in browser? tried both ie and firefox and had the same problem. so i had to drag the horizontal scroll bar when viewing posts. is it just me? thanks. -- Kelie ___ Users mailing list

Re: [IronPython] COM Interop: Why does this code only work in IronPython Console?

2007-09-12 Thread Kelie
On 9/12/07, Michael Foord <[EMAIL PROTECTED]> wrote: > Hello Kelie, > > Not sure, but it looks to me like your program will just exit after the > last line... Try doing a while True loop with a Thread.Sleep() in it to > keep the interpreter alive... > > Michael Foord >

[IronPython] COM Interop: Why does this code only work in IronPython Console?

2007-09-12 Thread Kelie
cation() MessageBox.Show(xlApp.ActiveWorkbook.Name) #This line works. Excel.AppEvents_Event.add_NewWorkbook(xlApp, onNewWorkbook) #This line does not work. -- Kelie ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com