[python-win32] How do I get a child's PID, or the whole process tree?

2005-03-07 Thread Rogelio Flores
Using win32process.CreateProcess, I can get the process handle/pid of a process I launch. Now this process launches other processes and they in turn launch other processes without using CreateProcess (so I don't have their pids), to the point where I know there are at least two levels of

[python-win32] python crash with IE Activex

2005-03-07 Thread Stani Michiels
Hi all, I'm playing with the demo example ActiveXWrapper_IE.py. What I want is avoid users access some url's. To accomplish this I'm using OnBeforeNavigate2 event, returning a true value should cancel the request... code def OnBeforeNavigate2(self, pDisp, URL, Flags, TargetFrameName,

[python-win32] Re: How do I get a child's PID, or the whole process tree?

2005-03-07 Thread Rogelio Flores
On Mon, 7 Mar 2005 10:06:01 -0500, Rogelio Flores [EMAIL PROTECTED] wrote: Using win32process.CreateProcess, I can get the process handle/pid of a process I launch. Now this process launches other processes and they in turn launch other processes without using CreateProcess (so I don't have