OK combobox in and working ... but.... I have two files one with the GUI stuff in it and one with the guts of the program, the main program code starts with -
def __init__(self):
Ui_MainWindow.__init__(self)
self.setupUi(self)
class MyApp(QtGui.QMainWindow, Ui_MainWindow):
def __init__(self):
QtGui.QMainWindow.__init__(self)
Ui_MainWindow.__init__(self)
self.setupUi(self)
To copy to clipboard, switch view to plain text mode
does it have to start with a 'class' ?? the flow would be easier to control without it... main() doesnt really swwm to do much at all now... all the code seems to need to be in MyApp
Bookmarks