[python-win32] change PAMIE to win32 interface problem

2009-10-22 Thread elca
hello, currently im making some web scrap script. and i was choice PAMIE to use my script. actually im new to python and programming. so i have no idea ,if i use PAMIE,it really helpful to make script to relate with win32-python. ok my problem is , while im making script,i was encounter two probel

Re: [python-win32] Calling random Windows function?

2009-10-22 Thread Aahz
On Fri, Oct 23, 2009, Christopher Nilsson wrote: > > But that's only to get you partway there. Next you'll need to > implement the SYSTEM_INFORMATION_CLASS structures, to provide as > parameters. Ayup. > But, wow... Just starting with windows programming, and jumping right > into the semi-docume

Re: [python-win32] Calling random Windows function? [SEC=PERSONAL]

2009-10-22 Thread Aahz
On Fri, Oct 23, 2009, Andrew MacIntyre wrote: > Aahz wrote: >> >> I'm just getting into Windows programming for the first time, >> and I need to list all open files. Windows has a convenient >> function for that (NtQuerySystemInformation), but I can't figure >> out how I am supposed to call it. I

Re: [python-win32] Calling random Windows function?

2009-10-22 Thread Christopher Nilsson
Yep, that will give you an AttributeError... You want to be looking in "ntdll", not kernel32. eg. ctypes.windll.ntdll.NtQuerySystemInformation But that's only to get you partway there. Next you'll need to implement the SYSTEM_INFORMATION_CLASS structures, to provide as parameters. MSDN has som

Re: [python-win32] Calling random Windows function? [SEC=PERSONAL]

2009-10-22 Thread Andrew MacIntyre
Aahz wrote: > I'm just getting into Windows programming for the first time, > and I need > to list all open files. Windows has a convenient function for that > (NtQuerySystemInformation), but I can't figure out how I am > supposed to > call it. I bought of copy of the Win32 book and I can't fin

[python-win32] Calling random Windows function?

2009-10-22 Thread Aahz
I'm just getting into Windows programming for the first time, and I need to list all open files. Windows has a convenient function for that (NtQuerySystemInformation), but I can't figure out how I am supposed to call it. I bought of copy of the Win32 book and I can't find anything about accessing

Re: [python-win32] making icons on task bar require double-click

2009-10-22 Thread Tim Roberts
Randy Syring wrote: > Is it possible, with a python program, to run through the task bar > icons and change them so that their current single-click event would > get transferred to a double-click event? I click them by mistake > sometimes and its very annoying to wait for the program to open just

[python-win32] making icons on task bar require double-click

2009-10-22 Thread Randy Syring
Is it possible, with a python program, to run through the task bar icons and change them so that their current single-click event would get transferred to a double-click event? I click them by mistake sometimes and its very annoying to wait for the program to open just so I can close it. I ha