Re: [python-win32] Rewriting my previous question....

2006-05-21 Thread Mark Hammond
> I'll rewrite my previous question... > > How do I get data from another process using win32gui.SendMessage() > when it needs some pointers to fill in the data? It appears your previous mails indicated how to do that. Unfortunately, some of those functions are not exposed via pywin32. Cheers,

Re: [python-win32] Getting the text out of a listbox from another process

2006-05-21 Thread João Paulo Fernandes Farias
Hi! I've found the code bellow does what I want. Anyway to do it with ctypes / win32 extensions? #define WIN32_LEAN_AND_MEAN #include #include #include int main(void) { HWND hwnd=FindWindow(NULL, "Stealing Program's Memory: ListView"); HWND listview=FindWindowEx(hwnd, NULL, "SysListView32"