[python-win32] Troubleshooting COM error after upgrade to .NET 6

2024-05-14 Thread Martin Wiboe
patch. Do you have any suggestions on how to troubleshoot this further, or what the problem could be? Thanks in advance, Martin ___ python-win32 mailing list python-win32@python.org https://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] daemonized child

2009-09-27 Thread Antoine Martin
Elias Fotinis wrote: From: Antoine Martin What is the best way to ensure that a child started with subprocess.Popen does not get killed when its parent terminates on win32? On Linux I can daemonize the child with fork()s and dup2()s But what about windows? You don't have to do anything

[python-win32] daemonized child

2009-09-26 Thread Antoine Martin
Hi list, What is the best way to ensure that a child started with subprocess.Popen does not get killed when its parent terminates on win32? On Linux I can daemonize the child with fork()s and dup2()s But what about windows? What about a child process that I cannot re-write, is there anything I

Re: [python-win32] window events via SetWindowsHookExA

2009-09-18 Thread Antoine Martin
Hi Tim, Tim Roberts wrote: Antoine Martin wrote: I am trying to use SetWindowsHookExA via ctypes to be notified when Windows are mapped/unmapped, to get the same functionality as SUBSTRUCTURE_MASK events on the root X-window (or is there a better way that I have missed?) WH_CALLWNDPROC

[python-win32] window events via SetWindowsHookExA

2009-09-17 Thread Antoine Martin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, I am trying to use SetWindowsHookExA via ctypes to be notified when Windows are mapped/unmapped, to get the same functionality as SUBSTRUCTURE_MASK events on the root X-window (or is there a better way that I have missed?) Here is the code:

[python-win32] VARIANT as byref parameter

2008-09-16 Thread martin . prochnow
if someone could help me. Regards, Martin ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

[python-win32] creating a Word AddIn based on the Excel one

2008-03-31 Thread Kieran Martin
my way round the Word Object model, VBA et al. But I'm really winging it with the COM stuff. Thanks in advance to who-ever takes a look at this . Kieran Martin e-Spatial Ltd New Zealand Here's the trace collector data: # This window will display output from any programs

[python-win32] High Baud Rate Serial Port Question

2007-09-09 Thread Martin Gysel
to interface hardware which such rates. I also want to use python to communicate at 100 bps with my hardware, it would make live easier... Jeff did you find a practical solution? martin ___ python-win32 mailing list python-win32@python.org http

Re: [python-win32] how to get select behavior for non-socket objects

2007-07-27 Thread Brian Martin
Nevermind, I actually decided to read the above book a little more closely and I think I understand things a little more :) On 7/27/07, Brian Martin [EMAIL PROTECTED] wrote: Question.. Is 'Python Programming on Win32' the only resource we have so far or are their other more recent books

[python-win32] how to get select behavior for non-socket objects

2007-07-23 Thread Brian Martin
Hello, I understand that the select module will only work with sockets under windows. Is there a built-in python module for win32 that provides some kind of multiplexing ability for something like a serial port (via pyserial). thanks, brian ___

[python-win32] python com server exceptions don't make it to .NET / CLR app

2006-03-29 Thread martin
/Exception passed to raise()? Thanks, Martin pgphFFr3wioS6.pgp Description: PGP signature ___ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] Setting Event of Labview using Python

2006-02-15 Thread Kuner Martin
the VI Server, global variables, local variables, DataSocket, and so on to change VI or front panel objects programmatically. The only exception is the Value (Signaling) property. Regards, Martin From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of yeswanty deviSent

Re: [python-win32] [Pywebsvcs-talk] Using SOAPpy Within a Windows NT service

2005-09-26 Thread Taylor, Martin
servers. Martin Taylor From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul WeimerSent: Monday, September 26, 2005 11:29 AMTo: [EMAIL PROTECTED]; python-win32@python.orgSubject: [Pywebsvcs-talk] Using SOAPpy Within a Windows NT service I have a web service written in SOAPpy

[python-win32] Activex call delivers only unicode string, but ASCII is needed

2005-07-04 Thread Kuner Martin
? Thanks, Martin ___ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] win32com problem with LabVIEW

2005-06-25 Thread Kuner Martin
belongs these problem ? Martin -Original Message- From: Mark Hammond [mailto:[EMAIL PROTECTED] Sent: Saturday, 25. June 2005 4:44 AM To: Kuner Martin; python-win32@python.org Subject: RE: [python-win32] win32com problem with LabVIEW It doesn´t work with the following code: ... D

[python-win32] win32com problem with LabVIEW

2005-06-24 Thread Kuner Martin
is not callable Does anyone has a glue ? Martin ___ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] win32com problem with LabVIEW (newbie question)

2005-06-24 Thread Kuner Martin
with the most important method, which calls a VI (see thread). I hope there will be a solution otherwise I'm in big trouble. Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Peery Sent: Friday, 24. June 2005 7:24 PM To: python-win32@python.org

[python-win32] Windows Low Fragementation Heap yields speedup of ~15%

2005-02-14 Thread Gfeller Martin
://msdn.microsoft.com/library/default.asp?url=/library/en-us/memory/base/low_fragmentation_heap.asp Best regards, Martin PS: Since I don't speak C, I used ctypes to convert all heaps in the process to LFH (I don't know how to determine which one is the C heap

[python-win32] python win32 demos question

2005-01-18 Thread Chris R. Martin
In the win32\demos directory, there is a script called win32gui_dialog.py. Near the end of this script, there are the following lines: def DemoModal(): w=DemoWindow() w.DoModal() ##w.CreateWindow() ##win32gui.PumpMessages() ### Not sure how to kill this loop. I realize that