Greetings,
Does anyone know of a way to add an icon to an existing .exe file on
win32 platform using win32all package?
Thanks.
Graeme
___
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32
Roger Upole wrote:
> Bill Burns wrote:
>
>>>On 2/05/2006 8:16 AM, Dean Allen Provins wrote:
>>>
>>>
Hello:
I just installed the 2.4 version of Python on a WinXP box. I then
copied over my python code which runs under Linux. This code uses
"curses.ascii" (isspace specifically
http://dogbert.abebooks.com/servlet/BookDetailsPL?bi=715644772&searchurl=sts%3Dt%26y%3D0%26kn%3Dpython%2Bwin32%26x%3D0
Book prices are going the way gold is these days ... a precious book!
EuGeNe
Bill Burns wrote:
> Mark,
>
> Is there going to be a 2nd Edition of your Python Programming on Win3
On Tue, 2 May 2006, EuGeNe wrote:
> http://dogbert.abebooks.com/servlet/BookDetailsPL?bi=715644772&searchurl=sts%3Dt%26y%3D0%26kn%3Dpython%2Bwin32%26x%3D0
>
> Book prices are going the way gold is these days ... a precious book!
>
> EuGeNe
I asked O'Reilly about this and they said that they were
I’m logged in as an administrator on my computer (actually
a domain admin) and I can’t seem to get the killProcName.py program (that
came with Mark Hammond’s python extensions) to kill ANY process owned by ‘SYSTEM’
(I’ve tried a few – eg. ‘iPodService’, ‘Apache’)
I can open the windows
On 3/05/2006 12:44 AM, Dean Allen Provins wrote:
> Roger Upole wrote:
>> Bill Burns wrote:
>>
On 2/05/2006 8:16 AM, Dean Allen Provins wrote:
> Hello:
>
> I just installed the 2.4 version of Python on a WinXP box. I then
> copied over my python code which runs under
…well, I couldn’t get a pure _vbscript_ program to
kill these processes either, but I did find a utility that comes with winXP:
taskkill; so this works like a charm:
import os
name = ‘Apache.exe’
os.system('taskkill /F /IM %s /T' % name)
John Machin wrote:
> On 3/05/2006 12:44 AM, Dean Allen Provins wrote:
>
>> Roger Upole wrote:
>>
>>> Bill Burns wrote:
>>>
> On 2/05/2006 8:16 AM, Dean Allen Provins wrote:
>
>
>> Hello:
>>
>> I just installed the 2.4 version of Python on a WinXP box. I then
>> copied
> Does anyone know of a way to add an icon to an existing .exe file on
> win32 platform using win32all package?
With some pain :( You need to put together the .ico structure yourself and
use the BeginUpdateResource() etc win32 functions. The only working code I
know (off the top of my head) is i
You most likely need to enable the SE_DEBUG_NAME
privilege. I imagine taskkill is doing that for you under the
covers.
hth
Roger
___
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32
> Metz, Bobby W, WWCS wrote:
>
>>Yeh, Mark's first book seems to be on backorder everywhere. I've been
>>trying to get it for some time. B&N and Borders both don't have it and
>>tell me backordered as well.
>>
>
>
> I sent an email to O'Reilly earlier today. I asked them then they
> thought I
At Sunday 30/4/2006 05:04, Vahid Noroozi wrote:
i have a python program that use sellect.poll() to control some
sockets but in windows we doesn't have sellect.poll()
You can use select.select() which is available on Windows too.
asyncore.poll() is an example.
also how can i find informatio
At Tuesday 2/5/2006 16:50, Gerrat Rickert wrote:
>Im logged in as an administrator on my computer
>(actually a domain admin) and I cant seem to
>get the killProcName.py program (that came with
>Mark Hammonds python extensions) to kill ANY
>process owned by SYSTEM (Ive tried a few eg.
13 matches
Mail list logo