I just started using pyqt4 and am stuck on how to change a combobox list from another combobox. Is there a example of sometype that shows how to work this method.
Do I use a if, else statement to change the option for combobox_2?
ex.
Combobox_1 has a list of 1,2,3. Combobox_2 has a list of a,b,c or d,e,f or g,h,i.
If 1 is selected in Combobox_1, Combobox_2 it will show a,b,c.
If 2 is selected in Combobox_1, Combobox_2 will show d,e,f.
If 3 is selected in Combobox_1, Combobox_2 will show g,h,i.
thanks