Re: [python-win32] Outlook Add-In Demo Question ... A runtime error occurred during the loading of the com add-in

2021-12-08 Thread Dan Moisan
r office is the > generic advice, but it's difficult to give more specific advice without > knowing more about your specific environment. > > Cheers, > > Mark > > On 8/12/2021 1:49 pm, Dan Moisan wrote: > > I apologize in advance for the basic question, but I have sp

[python-win32] Outlook Add-In Demo Question ... A runtime error occurred during the loading of the com add-in

2021-12-07 Thread Dan Moisan
ript before or after I run it? Or should the add-in load after it is registered? I'm so sorry for such a basic question. Thank you! Dan ___ python-win32 mailing list python-win32@python.org https://mail.python.org/mailman/listinfo/python-win32

[python-win32] Possible leak in the win32evtlog module when using EvtSubscribe

2016-11-01 Thread Dan Cohen
, Callback=my_event_handler, Context=None, Query=None) And then in another process creating tons of event logs by doing : while True: x = win32security.LogonUser("Dan Cohen","", "X",3,0) x = None Which creates a lot of event logs of type user logon. The

[python-win32] getting underlying OLE object identity for win32com objects

2014-10-01 Thread Dan Lenski
to the same underlying OLE object, I've resorted to parsing the `repr()` strings and comparing the hexadecimal addresses (`obj at 0x...`). Is there a better way to do this? Thanks, Dan Lenski ps- I also posted this on StackOverflow (http://stackoverflow.com/questions/26068864) but it doesn't

Re: [python-win32] getting underlying OLE object identity for win32com objects

2014-10-01 Thread Dan Lenski
and table._oleobj_==same_table._oleobj_ Thanks, Dan ___ python-win32 mailing list python-win32@python.org https://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] VARIANT parameter

2012-10-12 Thread Dan Glassman
On Fri, Oct 12, 2012 at 6:27 AM, Matteo Boscolo matteo.bosc...@boscolini.eu wrote: sometimes you need a combination of variant type like win32com.client.VARIANT(VT_VARIANT | VT_NULL,None) In this case, AutoCAD and Intellicad want: filterType = VARIANT(pythoncom.VT_ARRAY | pythoncom.VT_I2,

Re: [python-win32] speed up win32com.client

2012-05-12 Thread Dan Glassman
VBA is faster because it's running in-process inside AutoCAD (everything is loaded into acad.exe). Python runs out-of-process (AutoCAD objects need to be passed back and forth between acad.exe and python.exe). You can use AutoCAD's ObjectARX API to embed python inside AutoCAD and make python

[python-win32] pywin32 and Windows Filtering Platform?

2012-04-21 Thread Dan
? -Dan ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] problem AddLine AutoCAD win32com.client

2012-02-01 Thread Dan Glassman
Daniel, I've tested a prerelease version of pywin32 that contains the new win32com.client.VARIANT class and it works well with AutoCAD. Once released, you can write something like this: import win32com.client import pythoncom def POINT(x,y,z): return

[python-win32] Problem with Pyserial

2010-06-14 Thread Dan Ackerman
know what the problem could be? import serial ser=serial.Serial(0) ser.baudrate=9600 ser.port=0 ser.open() ser.write(hello\n) ser.close() Thanks, Dan ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python

[python-win32] Trying to send info through serial port

2010-06-11 Thread Dan Ackerman
specific name, use: ser = serial.Serial('portName', 19200, timeout=0) print ser.portstr #should tell you what specific port was used ser.write('FREQ 720 MHz') ser.close() Thanks, Dan ___ python-win32 mailing list python-win32@python.org http://mail.python.org

[python-win32] (no subject)

2009-01-22 Thread dan
\simple_server_test.py, line 42, in module CLIENT_PIPE.write( 'A' ) IOError: [Errno 0] Error --Dan Menes ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] Duplex pipes issue (was (no subject))

2009-01-22 Thread dan
Thank you, Tim, That fixed it! (and apologies to the list for initially sending this with no subject). --Dan d...@shragmir.com wrote: This is not the end of the world, because I can write the client application to use win32 API calls instead of the Python calls. But does anyone have any

[python-win32] Memory Leak in MFC/C++ based Python Extended/Embedded code.

2008-01-07 Thread Dan Trowbridge
Hi all, I have a MS Windows/MFC based C++ code that I have implemented Python embedding/extending in. (I am using Visual Studio 2003.) The code seems to do what I have intended except it always reports a memory leak when it exits. I tried all kinds of things but there did not seem to be

Re: [python-win32] Adding AutoCAD Points.

2006-06-05 Thread Dan Glassman
Tim Riley wrote: Has anyone come up with a way to add AutoCAD points using Python and win32? Do I have to use Makepy on the type library? For example adding a line to Modelspace requires you to call the AddLine method that accepts two arrays of doubles. Any help/tips would be greatly

Re: [python-win32] Using win32com Constants

2006-02-17 Thread Dan Glassman
David Carter wrote: -Original Message- From: Robert Brewer [mailto:[EMAIL PROTECTED] Sent: Friday, February 17, 2006 4:11 PM To: David Carter; python-win32@python.org Subject: RE: [python-win32] Using win32com Constants David Carter wrote: Why is it that when I want to use a win32COM

Re: [python-win32] Excel advanced find

2006-02-15 Thread Dan Glassman
, constants.xlValues, constants.xlWhole, constants,xlByColumns, constants.xlNext, False, False, Missing) [/code] -- -Dan Glassman ___ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo

[python-win32] [Fwd: Re: Excel advanced find]

2006-02-15 Thread Dan Glassman
Dan Glassman wrote: Named arguments will work as suggested; this will prevent those arguments from being presented to the Excel interface at all. You can also use pythoncom.Missing, which is another way to prevent arguments from being presented to the interface: [code] from pythoncom

Re: [python-win32] Unable to close Excel, error in dynamic.py

2006-02-08 Thread Dan Glassman
George Flaherty wrote: I have been messing around Excel, but when I run the following example I get an error? Python 2.4.2 (#67, Sep 28 2005, 12:41:11) [MSC v.1310 32 bit (Intel)] on win32 Type help, copyright, credits or license for more information. from win32com.client import Dispatch

Re: [python-win32] Explicit variant types for Invoke InvokeTypes (WasRe: Autocad.*)

2006-02-08 Thread Dan Glassman
: PySequence_Check may return true for instance objects, ... [/code] Cheers! -Dan Glassman ___ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

[python-win32] Explicit variant types for Invoke InvokeTypes (Was Re: Autocad.*)

2006-02-06 Thread Dan Glassman
this would still be useful, and it would likely be forward-compatible with a solution for the general case. So...if nobody else has a pressing need for this, or time to help with it, (Mark other CVS committers) would you accept a less general patch? Thanks all! -Dan Glassman

[python-win32] Autocad automation via COM: Passing coordinates as arguments (suggested fix within)

2006-01-25 Thread Dan Glassman
From: wccppp [EMAIL PROTECTED] Subject: [python-win32] question about COM again: variable type? [code] ms.AddPoint([0.0, 0.0, 0.0]) # this line gives the problem [/code] # Result is of type IAcadPoint def AddPoint(self, Point=defaultNamedNotOptArg): Creates a Point