Program error
Hi
I have the following piece of code in my program which accesses an object in a jTable and sets the selected item in a jComboBox according to the value in the table
<code>
if( Integer.parseInt( (String)jTable1.getValueAt(FLUX_CURVE_ROW,Run) )==1)
{
jCheckBox1.setSelected(true);
}
An error is returned which is
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
Does anyone know why?
Thanks in advance

