Re: [python-win32] ImageList_AddMasked?

2010-04-21 Thread Michel Claveau
Re ! Perhaps must be in winxpgui? Because I use: import winxpgui as win32gui But, I do not found, either, ImageList_AddMasked in winxpgui @+ -- Michel Claveau ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailm

[python-win32] ImageList_AddMasked?

2010-04-21 Thread Michel Claveau
Hi! I do not found ImageList_AddMasked in win32gui See: http://msdn.microsoft.com/en-us/library/bb761514(v=VS.85).aspx Am I blind? @+ -- Michel Claveau ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/

Re: [python-win32] Using the COM interface of Infinion Memtool

2010-04-21 Thread Tim Roberts
Markus Hubig wrote: > Hi Greg, > > thank You for your help, now I just got my basic flashing script up > and running, ... mostly ;-) > ... > The Problem I have now is when I run the mt.Init() method in line 3, I > get a > window where I have to select a COM-Port and the COM-Port speed and press > O

Re: [python-win32] win32com.client.dispatch

2010-04-21 Thread Tim Roberts
Murali Prasath wrote: > > I am handling excel application using python. > > Could anybody please provide me full list of the functions > win32.com.client.dispatch provides? > > I have few with me that are Sheets, > Dispatch("Excel.Application").Workbooks.Open(), > Cur_sheet.UsedRange.Rows.Co

Re: [python-win32] Using the COM interface of Infinion Memtool

2010-04-21 Thread Markus Hubig
Hi Greg, thank You for your help, now I just got my basic flashing script up and running, ... mostly ;-) 01 import memtool 02 mt = memtool.SMTMemtool() 03 mt.Init("C:\\Program Files\\Memtool\\Targets\\genXC164CM_8F.dat") 04 mt.ConnectTarget() 05 fm = mtool.GetFlashModByIndex(1) 06 sectors = fm.Nu

Re: [python-win32] python win32api maya2008

2010-04-21 Thread Graeme Glass
On Wed, Apr 21, 2010 at 9:05 AM, kNish wrote: > Hi, > > How is it possible to run import win32api successfully on a 64bit maya > version 2008? > > The following error occurs: > > Error: No module named win32api > Traceback (most recent call last): > File "", line 1, in > ImportError: No module n

[python-win32] python win32api maya2008

2010-04-21 Thread kNish
Hi, How is it possible to run import win32api successfully on a 64bit maya version 2008? The following error occurs: Error: No module named win32api Traceback (most recent call last): File "", line 1, in ImportError: No module named win32api I need to get mouse cursor position in python so th

Re: [python-win32] DuplicateTokenEx

2010-04-21 Thread le dahut
20/04/2010 17:05, Tim Golden wrote : On 20/04/2010 15:39, le dahut wrote: Hello, I'm trying to use "win32security.DuplicateTokenEx" but I encounter an error. My code looks like this : """ def getusertoken(): # process.get_pids(procname) returns a list of the pids of running copies of "" # f

[python-win32] win32com.client.dispatch

2010-04-21 Thread Murali Prasath
Hi All, I am handling excel application using python. Could anybody please provide me full list of the functions win32.com.client.dispatch provides? I have few with me that are Sheets, Dispatch("Excel.Application").Workbooks.Open(), Cur_sheet.UsedRange.Rows.Count etc.. To mention precisely what