[python-win32] Visibility information

2010-01-27 Thread Stefan George
Good morning PyWin32-users, I am using the PyWin32 package and I am wondering if there is any way to get visibility information of a button (I only know the handle). Is that possible and is there any code snippet, you could pass to me? I am looking for something like isVisible(hwnd)

Re: [python-win32] Visibility information

2010-01-27 Thread Elias Fotinis
From: Stefan George I am using the PyWin32 package and I am wondering if there is any way to get visibility information of a button (I only know the handle). Is that possible and is there any code snippet, you could pass to me? I am looking for something like isVisible(hwnd) returns True or

[python-win32] Maybe the wrong newsgroup to ask ?

2010-01-27 Thread Stef Mientki
hello, I'm trying to kill processes, I started myself with subprocess.popen, under windows XP, Python 2.6 Why are the subprocess.Popen methods kill() and terminate () not working, while a simple suggestion from this newsgroup, shown below, works perfect ? thanks, Stef Mientki My_Process

Re: [python-win32] Boolean type changed in Python 3.0?

2010-01-27 Thread Mark Hammond
On 27/01/2010 8:21 AM, Sunny Carter wrote: Mark - just wondered if you had any update on this? I believe Roger checked a fix in for this over the last few days. I'm not sure when a new binary build will be available though, but probably not within a few weeks... Cheers, Mark

Re: [python-win32] Boolean type changed in Python 3.0?

2010-01-27 Thread Sunny Carter
Fabulous - thanks for the update. Sunny -Original Message- From: Mark Hammond [mailto:skippy.hamm...@gmail.com] Sent: 27 January 2010 17:28 To: Sunny Carter Cc: python-win32@python.org Subject: Re: [python-win32] Boolean type changed in Python 3.0? On 27/01/2010 8:21 AM, Sunny Carter

Re: [python-win32] Maybe the wrong newsgroup to ask ?

2010-01-27 Thread Tim Roberts
Stef Mientki wrote: I'm trying to kill processes, I started myself with subprocess.popen, under windows XP, Python 2.6 Why are the subprocess.Popen methods kill() and terminate () not working, while a simple suggestion from this newsgroup, shown below, works perfect ? ... My_Process

Re: [python-win32] Maybe the wrong newsgroup to ask ?

2010-01-27 Thread Stef Mientki
On 27-01-2010 20:07, Tim Roberts wrote: Stef Mientki wrote: I'm trying to kill processes, I started myself with subprocess.popen, under windows XP, Python 2.6 Why are the subprocess.Popen methods kill() and terminate () not working, while a simple suggestion from this newsgroup, shown

Re: [python-win32] Maybe the wrong newsgroup to ask ?

2010-01-27 Thread Tim Roberts
Stef Mientki wrote: Showing the code is always difficult for me, because I encapsulate these complex things. The code I gave above doesn't work either :-) I use a kill method that also kills the children and seems to be the essential thing is this situation, (btw why are there children ?)

[python-win32] makepy or genpy issue: no get_accChildCount?

2010-01-27 Thread Xin Zhao
Hey, I am trying to use pywin32 to do program automation. Basically, I need to get an IAccessible object and call functions on it. Here is what I did: x = pythoncom.AccessibleObjectFromWindow(3803742, 0, pythoncom.IID_IDispatch) (3803742 is the HWND of an internet explorer window) Then I do: z

Re: [python-win32] Maybe the wrong newsgroup to ask ?

2010-01-27 Thread Stef Mientki
On 28-01-2010 00:08, Tim Roberts wrote: Stef Mientki wrote: Showing the code is always difficult for me, because I encapsulate these complex things. The code I gave above doesn't work either :-) I use a kill method that also kills the children and seems to be the essential thing is this