ctypes list library

2009-06-22 Thread luca72
There is a command for ctypes that help me to know the entry points inside a library. Thanks Luca -- http://mail.python.org/mailman/listinfo/python-list

Re: ctypes list library

2009-06-22 Thread luca72
Thanks for your reply. I have another question i can load a list of library? Thanks Luca -- http://mail.python.org/mailman/listinfo/python-list

Re: ctypes list library

2009-06-22 Thread luca72
Can you tell me how load a list of library Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: ctypes list library

2009-06-25 Thread luca72
Hello but find_library find only the lib. but if i need to load from a list of lib how i have to do. My proble is that i have 5 lib (a,b,c,d,e), if i load the a i get lib b not found, if for first i load the b and than the a i get the same error how i have to proceed. Thanks Luca -- http://mail

pyqt unhandled RuntimeError \"no access to protected functions or signals for objects not created from Python

2010-09-03 Thread luca72
Hello i have also write to pyqt mailing list but maybe you can help me to solve this question: I have write a tcpserver but wheni try to read by the signal readyRead() e get the error this the part of the program: def nuova_connessione(self): print 'Nuova connessione'

pyqt signals

2010-09-03 Thread luca72
Hello i have write this but i not able to connect the emit of the class Socket to the Form class, can you help me? class Socket(QtNetwork.QTcpSocket): def __init__(self, parent=None): super(Socket, self).__init__(parent) self.connect(self, QtCore.SIGNAL("readyRead()"), self.leg

Vb6 type to python

2022-11-30 Thread luca72.b...@gmail.com
Hello i have a byte file, that fill a vb6 type like: Type prog_real codice As String * 12'hsg denom As String * 24'oo codprof As String * 12 'ljio note As String * 100 programmer As String * 11 Out As Integer b_out As Byte'TRUE = Se

is there somebody that have experince with python and canopen

2022-04-15 Thread luca72.b...@gmail.com
We are searching for someone that can develop a python program for use servomotor for automotive. -- https://mail.python.org/mailman/listinfo/python-list

Qtimer and extra argument

2016-10-26 Thread luca72 via Python-list
Hello i hope that yo can reply to this question also if the argument is pyqt i have a simple test: def start_timer(self): self.timer = QTimer() testo = 'pressed' self.timer.singleShot(1000, self.metto_testo) def test(self, testo): self.lineEdit.setText(testo)

Re: Qtimer and extra argument

2016-10-26 Thread luca72 via Python-list
I get () missing 1 required positional argument: 's' -- https://mail.python.org/mailman/listinfo/python-list

Re: Qtimer and extra argument

2016-10-26 Thread luca72 via Python-list
thanks -- https://mail.python.org/mailman/listinfo/python-list

PyQt pass data from class

2016-11-15 Thread luca72 via Python-list
Hello i need to this class Form(QWidget, Ui_Form): """ Class documentation goes here. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget @type QWidget """ super(Form, self).__ini

Re: PyQt pass data from class

2016-11-15 Thread luca72 via Python-list
Thanks for your reply Is the latter, can you explain how i can do it. Thanks -- https://mail.python.org/mailman/listinfo/python-list

import

2016-05-30 Thread luca72 via Python-list
Hello i'm not sure that is the right group but i try i use pyqt5 with eric i have two form in the first form i have add : from form_two import Form_two and for pass varible to second form i have add in the function def test(self) self.ft= Form_two() #so i can acces to Object in form_two se

<    1   2