[python-win32] Win32_GroupUser

2006-11-13 Thread Nathan
e domain. That includes : conn.Win32_GroupUser (GroupComponent = "Win32_Group.SID=sid_number") ... and quite a few conceiveable permutations. If anyone has working example code, I promise to buy you a beer and post a summary. -- - Nathan ___

[python-win32] How do I change the executable/process name to un-group taskbar icons?

2014-09-15 Thread Nathan McCorkle
re some other method to change things? Thanks! -Nathan ___ python-win32 mailing list [email protected] https://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] How do I change the executable/process name to un-group taskbar icons?

2014-09-16 Thread Nathan McCorkle
On Mon, Sep 15, 2014 at 11:18 PM, Werner wrote: >> I found this API, but it doesn't work on my version of Windows XP: >> SetCurrentProcessExplicitAppUserModelID >> >> Is there some other method to change things? > > Hhm, not sure but I think using wx.App.SetAppName should do that. Didn't help :(

Re: [python-win32] Interactive Code to Script File

2014-09-16 Thread Nathan McCorkle
On Sep 16, 2014 5:27 PM, "Zachary Ware" wrote: > By the way, it's usually best to just copy and paste your code and > error messages as text in the body of the email rather than attaching > an image, and embedding the image in a Word document just makes it > harder to see what's going on. Just f

Re: [python-win32] How do I change the executable/process name to un-group taskbar icons?

2014-09-17 Thread Nathan McCorkle
See here for an update and some code that uses the pywin32 stuff to mess around with TaskManager (I think... I adapted the code from some Visual Basic code I found online): https://groups.google.com/d/msg/wxpython-users/2BXSDFvWdAk/RE32KQPDb8MJ -- -Nathan

[python-win32] Python crash after win32com.client.CastTo?

2005-03-21 Thread Nathan Edwards
argTypes = ((3, 1), (3, 1), (3, 1), (3, 1), (3, 1), (16392, 2), (16389, 2)) args = (1, 0, 382, 1, 0, , ) If this is a bug in pywin, is this enough information to fix it? If not, how can I generate more helpful information? Thanks! nathan nathan -- Nathan Edwards, Ph.D. Center for Bioinformat

Re: [python-win32] Python crash after win32com.client.CastTo?

2005-03-22 Thread Nathan Edwards
ANWiffFile, I get a IFMANWiffFile (default Dispatch for FMANWiffFile). I can't do an explicit Dispatch('Analyst.IFMANWiffFile2') (not a valid class string). Later, again in VB, we have theWF = theFMANSpecData.GetWiffFileObject() theWF2 = theWF Is the CastTo "equivalent" t

Re: [python-win32] Python crash after win32com.client.CastTo?

2005-03-23 Thread Nathan Edwards
s, which for other functions in this library generates exceptions, the crash happens anyway (implies that even the parameter checking doesn't get done, and since this usually is done first, before any other stuff happens, it suggests we don't even make it into the library function prope

Re: [python-win32] Python crash after win32com.client.CastTo?

2005-03-23 Thread Nathan Edwards
None) >>> Dispatch('Analyst.FMANWiffFileControl') ... com_error: (-2147467262, 'No such interface supported', None, None) >>> Dispatch('Analyst.IFMANWiffFileControl') ... com_error: (-2147221005, 'Invalid class string', None, None) Why does

Re: [python-win32] Win32_GroupUser

2006-11-13 Thread Nathan Jeffrey
2 = sql_group.associators > (wmi_association_class="Win32_GroupUser") > Although it may not answer the question I posted, it does answer an unasked question about the way Windows WMI Does Stuff. I shall attempt it tomorrow and see