How do I select a column in the array? I can select the row just fine but for my ComboBox I need to select the column as the values for the combobox.

Thanks in advance.

String[][] partNumberString =
	{
	{"PR214",	"MR43T", 	"RBL8",	"14K22"},			
	{"PR223",	"R43",		"RJ6 ",	"14K24"},
	{"PR224",	"R43N ",	"RN4 ",	"14K30"},
	{"PR246",	"R46N",		"RN8 ",	"14K32"}};
 
	//All the GUI objects
	JPanel mainPanel = new JPanel();
	JComboBox plainWrapComboBox = new JComboBox(partNumberString[[B]??[/B]]);