Re: [IronPython] GetRunningObjectTable

2011-04-27 Thread Jeff Hardy
GetRunningObjectTable isn't a static method, so you'll need to call it on an instance of IBindCtx. Not sure where you'd get one of those, though. - Jeff On Wed, Apr 27, 2011 at 1:40 PM, Sébastien de Menten wrote: > Hi, > > I am trying to use the GetRunningObjectTable function to retrieve a list

[IronPython] GetRunningObjectTable

2011-04-27 Thread Sébastien de Menten
Hi, I am trying to use the GetRunningObjectTable function to retrieve a list of all running objects (to later use them in COM automation). I do the following : >>> import System >>> System.Runtime.InteropServices.ComTypes.IBindCtx.GetRunningObjectTable(0) Traceback (most recent call last): Fil