Ganesh_Gupta | 2021-02-22 14:36:13 UTC | #1
def calc(self):
progressBar = self.progressBar
self.Calculate.setEnabled(False)
filter = self.SubSectorLevel1.currentText()
filter1 = self.SubSectorLevel2.currentText()
IND = self.lineEdit.text()
OTD = self.lineEdit_2.text()
Version= self.lineEdit_10.text()
Year=self.lineEdit_4.text()
if filter=='Residue Burning':
if filter1 =='None':
ARB(IND,OTD,Version,Year,progressBar)
if filter=='Lightning & Heating':
if filter1 =='Lighting':
RKL(IND,OTD,Version,Year)
elif filter1=='Space Heating':
RSH(IND,OTD,Version,Year)
elif filter1=='Water Heating':
RWH(IND,OTD,Version,Year,progressBar)
if filter=='Brick Production':
if filter1 =='None':
BP(IND,OTD,Version,Year,progressBar)
I want to use Qprocess in user defined function like RSH and BP
Eolinwen | 2021-02-19 18:50:30 UTC | #2
Hi Ganesh_Gupta Your code is not very clear and readable.
martin | 2021-05-30 15:29:34 UTC | #3
Hi @Ganesh_Gupta welcome to the forum. I've edited the code to make it clearer, but I'm still not sure what you're trying to do.
If you're wanting to run those functions (RKL, etc.) concurrently, it probably makes sense to use threads. If you take a look at the bottom of the threading tutorial there is an example where you can pass a custom function to run on a separate thread.
Purchasing Power Parity
Developers in [[ country ]] get [[ discount.discount_pc ]]% OFF on all books & courses with code [[ discount.coupon_code ]]Ganesh_Gupta | 2021-05-30 15:30:25 UTC | #4
Hi Martin, Thank you for your response. I solved this problem in different way but i have another query which i posted on different thread.
Packaging Python Applications with PyInstaller by Martin Fitzpatrick — This step-by-step guide walks you through packaging your own Python applications from simple examples to complete installers and signed executables.