kages\pywin32-210.0001_s-py2.5-win32.egg\pythonwin\pywin\framework\scriptutils.py",
line 310, in RunScript
exec codeObject in __main__.__dict__
File "C:\Python25\Lib\site-packages\pyccf\simple_server_test.py", line
42, in
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
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
&g
arted?
-Dan
___
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32
al.Serial(0) #if port has 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-wi
oes anyone 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/mai
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 win32com.client.VARIANT(pythoncom.VT_ARR
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 in-p
On Fri, Oct 12, 2012 at 6:27 AM, Matteo Boscolo 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, [0])
filterData = VARIANT(
to confirm that two objects refer 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://stacko
;is" for this purpose with Python
objects.
Both versions that you suggested do the trick: table==same_table and
table._oleobj_==same_table._oleobj_
Thanks,
Dan
___
python-win32 mailing list
python-win32@python.org
https://mail.python.org/mailman/listinfo/python-win32
I have found a lot of links to http://www.e-coli.net/pyiis_server.html,
however, this page starts out with:
"This is really very easy. It is also not a good idea for both security
and performance reasons."
What are the security and performance issues, and how can they be
overcome? I am wanting
> 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):
> """Create
ings (at the very least), and I don't know how to
test the Invoke case.
It will likely take me awhile to figure through the rest of this on my
own. In the meantime, this code could be pared down to solve a less
general case than Mark describes above: the Variant() cla
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 i
PyObject_GenericGetAttr(obj, valAttr);
if (!obuse)
{
Py_XDECREF(reqdType);
return FALSE;
}
PythonOleArgHelper helper;
helper.m_reqdType = V_VT(var) = rawVT;
helper.MakeObjToVariant(obuse, var);
Py_XDECREF(reqdType);
Py_XDECREF(obuse);
}
// NOTE: 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
Dan Glassman wrote:
> I don't want to post such long code, so I'm hosting it. If the links
> don't work for any interested party, please just email me and I'll get
> you a copy. I'm quite enjoying this learning experience and am open to
> al
t all. You can
also use pythoncom.Missing, which is another way to prevent arguments
from being presented to the interface:
[code]
from pythoncom import Missing
usedRange = xlApp.ActiveSheet.UsedRange
usedRange.Find('FXN3', Missing, constants.xlValues,
constants.xlWhole, constants
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:
>
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
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 greatl
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 anythin
None, 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 ty
py script 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
he PATH for 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
24 matches
Mail list logo