In PyQt, is it any way to close the main window and open a new one?
In particular, I am trying to close a window and open the same window all over again. I\'ve trie
How about this:
.... .... def selectMode( self ): self.close() self.field_params = params self.show()