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 -
Qt Code:
  1. class MyApp(QtGui.QMainWindow, Ui_MainWindow):
  2. def __init__(self):
  3. QtGui.QMainWindow.__init__(self)
  4. Ui_MainWindow.__init__(self)
  5. 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