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
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
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
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
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
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
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
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