python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
I would like to write ethernet datas to label
I have a problem.I have an ethernet connection in ethernet class.I have to write data's (coming from ethernet) to ui label.Here is my ethernet class run method.
void ethernetthread::run(){
printf(...
Elif Kantar
Votes: 0
Answers: 0
PyQt5: Using decorators with methods connected to signals
I want to use a decorator to handle exceptions within a class. However, when using the decorator, it always gives me:
TypeError: f1() takes 1 positional argument but 2 were given
I am quite sure it oc...
chris
Votes: 0
Answers: 1
qt: slot not called guarantee after disconnect of an auto direct connection
I have a single-thread gui application and I do not choose a type of connection, so according to documentation the connection will be a direct one. According to documentation then: "The slot is i...
JenyaKh
Votes: 0
Answers: 1
error: static assertion failed: Signal and slot arguments are not compatible
I am getting this error with connect function
QTimer timer;
QObject::connect(&timer, &QTimer::timeout,this, &MainWindow::draw);
timer.start(1000);
both timeout and draw are predefined fun...
Syed Iftekharuddin
Votes: 0
Answers: 1