Problem when try to run a Python embedding documentation example
Hi where's "python24.lib" ? I'm trying to test the example given at Python documentation: 5.1 Very High Level Embedding I'm using Microsoft Visual C++ 6.0 and got the error: LINK : fatal error LNK1104: cannot open file "python24.lib" baitelli,r. _ AVISO Esta mensagem é destinada exclusivamente a(s) pessoa(s) indicada(s) como destinatário(s), podendo conter informações confidenciais, protegidas por lei. A transmissão incorreta da mensagem não acarreta a perda de sua confidencialidade. Caso esta mensagem tenha sido recebida por engano, solicitamos que seja devolvida ao remetente e apagada imediatamente de seu sistema. É vedado a qualquer pessoa que não seja destinatário, usar, revelar, distribuir ou copiar ainda que parcialmente esta mensagem. _ DISCLAIMER This message is destined exclusively to the intended receiver. It may contain confidential or legally protected information. The incorrect transmission of this message does not mean loss of its confidentiality. If this message is received by mistake, please send it back to the sender and delete it from your system immediately. It is forbidden to any person who is not the intended receiver to use, reveal, distribute, or copy any part of this message. _ -- http://mail.python.org/mailman/listinfo/python-list
pwinauto to remote automate a GUI ?
Hi!
pywinauto is a set of python modules to automate the Microsoft Windows GUI.
With the lines below we start and atomates the apllication Notepad:
from pywinauto import application
app = application.Application()
app.start('C:\Notepad.exe')
... pywinauto automation code
Question: Is it possible to start and automate a remote GUI using Python?
baitelli,r.
_
AVISO
Esta mensagem é destinada exclusivamente a(s) pessoa(s) indicada(s)
como destinatário(s), podendo conter informações confidenciais,
protegidas por lei.
A transmissão incorreta da mensagem não acarreta a perda de sua
confidencialidade.
Caso esta mensagem tenha sido recebida por engano, solicitamos que
seja devolvida ao remetente e apagada imediatamente de seu sistema. É
vedado a qualquer pessoa que não seja destinatário, usar, revelar,
distribuir ou copiar ainda que parcialmente esta mensagem.
_
DISCLAIMER
This message is destined exclusively to the intended receiver. It may
contain confidential or legally protected information.
The incorrect transmission of this message does not mean loss of its
confidentiality.
If this message is received by mistake, please send it back to the
sender and delete it from your system immediately. It is forbidden to
any person who is not the intended receiver to use, reveal,
distribute, or copy any part of this message.
_
--
http://mail.python.org/mailman/listinfo/python-list
