I have a base label that should tell the user that the program is looking for directories in a few seconds. So this is like ...
self.label.setText(QString("Searching...")) # method to search directories goes here self.label.setText(QString("Search Complete"))
My problem is that the label never shows “Search ...”. Execution is always like starting a directory scanning method, and then the label text is set to “Search Complete” after the method that scans directories has completed.
I would appreciate it if someone could explain why this is happening, or suggest a better way to solve the problem.
many thanks
qt pyqt
Kim
source share