Hi,

I'm using a UI i created using the QtDesigner with several Comboboxes in it and am wondering how to get the selected item in the combobox to store in a variable.

by this i mean the user selects an option in one of the comboboxes, i need to take the users selection (in my case a few of the options are Chiron,Cyclops,aesir) and then store the options they selected somewhere for me to use for calculations later with data i have read from a .xls file using xlrd.

looking around i have seen currentIndexChanged(int) to send a signal to a slot with the index of the option the user selected, however i am unsure of how to implement this to store into a variable or other container.

Thanks in Advance
-Angel