Skip to content Skip to sidebar Skip to footer
Showing posts with the label Qthread

Running A Long Python Calculation In A Thread, With Logging To A Qt Window, Crashes After A Short While

I have a large module from a separate project, which I wanted to integrate into a GUI. The module d… Read more Running A Long Python Calculation In A Thread, With Logging To A Qt Window, Crashes After A Short While

Pyqt5: Timer In A Thread

Problem Description I'm trying to make an application that collects data, processes it, display… Read more Pyqt5: Timer In A Thread

Passing Parameter To A Pyqt Thread When Started

Is there any way we can pass a parameter to QThread when the thread is started (.start) ? I found a… Read more Passing Parameter To A Pyqt Thread When Started

How Do I Tell My Main Gui To Wait On A Worker Thread?

I have successfully outsourced an expensive routine in my PyQT4 GUI to a worker QThread to prevent … Read more How Do I Tell My Main Gui To Wait On A Worker Thread?

How Can I Pass Arguments To Qthread Worker Class?

I have a working example of code that creates a QThread that must be called from my on class (MyCla… Read more How Can I Pass Arguments To Qthread Worker Class?

Gui Become Unresponsive While Looping

After i click the button, the form become unresponsive until the parsing function finish its work. … Read more Gui Become Unresponsive While Looping