hello ,
i am using PyQt4 : QtCore and QtGui .
i built a GUI with few tabs using QTabWidget(self.centralwidget)
and addTab(self.device)
device is a QtGui.QWidget()
device is one of my tabs...
i send text to this tab with
self.ui.name.setText(' ....') (name belongs to this tab)
how can i clear the tab?? i want a clean screen when i trigger it!
thanks!!!