Re: [python-win32] getting the contents of a Control in a window

2005-04-12 Thread Tim Roberts
On Tue, 12 Apr 2005 15:07:26 -0400, Daniel F <[EMAIL PROTECTED]> wrote: have you tried win32gui.GetWindowText(hwnd) ? you may note that the msdn api reference specifies 3 arguments for this function, but pywin32 takes only one, the hwnd. dont know why, but it certainly makes the function much ea

Re: [python-win32] getting the contents of a Control in a window

2005-04-12 Thread Daniel F
> I am trying to get the contents of a control in a window, say a TextArea > control or a List or a button etc. > I can programmatically get the window its in and then the controls handle by > enumming the child windows of that window. > I cannot get the contents of that control. > I'm a tester and

[python-win32] getting the contents of a Control in a window

2005-04-12 Thread Ade
Hi, Just joined the list. I have been using win32 for a couple of years and of cause love Python. I am trying to get the contents of a control in a window, say a TextArea control or a List or a button etc. I can programmatically get the window its in and then the controls handle by enummi